TextCortex: Personal AI Assistant & AI Writer

TextCortex: Personal AI Assistant & AI Writer

Tailor your AI assistant to your style & needs — uniquely crafted from your own inputs and integrated with 10.000+ platforms.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "1.32.1",
  "default_locale": "en",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "activeTab",
    "clipboardRead",
    "scripting",
    "sidePanel"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "sidebar_action": {
    "default_icon": "/images/logo_32.png",
    "default_title": "TextCortex AI",
    "default_panel": "sidepanel.html"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/logo_16.png",
      "32": "/images/logo_32.png",
      "48": "/images/logo_48.png",
      "128": "/images/logo_128.png",
      "166": "/images/logo_128.png"
    }
  },
  "icons": {
    "16": "/images/logo_square_16.png",
    "32": "/images/logo_square_32.png",
    "48": "/images/logo_square_48.png",
    "128": "/images/logo_square_512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_idle",
      "exclude_matches": [
        "*://accounts.google.com/*",
        "*://music.youtube.com/*",
        "*://tagassistant.google.com/*"
      ],
      "css": [
        "css/textcortex-fonts.css"
      ]
    },
    {
      "matches": [
        "https://docs.google.com/document/*"
      ],
      "js": [
        "googleDocsPre.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "./scripts/appendYTScriptTag.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "externally_connectable": {
    "matches": [
      "https://app.textcortex.com/*",
      "https://*.textcortex.com/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/images/onboarding/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "injectionDev.js"
      ],
      "matches": [
        "https://docs.google.com/*"
      ]
    },
    {
      "resources": [
        "injectionProd.js"
      ],
      "matches": [
        "https://docs.google.com/*"
      ]
    },
    {
      "resources": [
        "fonts/*",
        "css/*"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "interceptYoutubeNetwork.js"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ]
}