Texta.ai: AI Copilot and AI Writer Assistant

Texta.ai: AI Copilot and AI Writer Assistant

Boost your writing. Get answers to complex questions. Generate any content. Summarize and Paraphrase. Powered by GPT-4, ChatGPT.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Texta.ai: AI Copilot and AI Writer Assistant",
  "description": "Boost your writing. Get answers to complex questions. Generate any content. Summarize and Paraphrase. Powered by GPT-4, ChatGPT.",
  "version": "0.6.2",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "contentScript.css"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://docs.google.com/document/*"
      ],
      "run_at": "document_start",
      "js": [
        "js/gdocInject.js",
        "js/docs.js"
      ],
      "world": "MAIN"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "contentScript.css",
        "fonts/*.woff",
        "fonts/*.woff2",
        "images/*.png",
        "images/*.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "tabs",
    "storage",
    "background",
    "cookies"
  ],
  "icons": {
    "16": "icon-48.png",
    "48": "icon-48.png",
    "128": "icon-48.png"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "activate_action": {
      "suggested_key": {
        "default": "Ctrl+M",
        "mac": "MacCtrl+M"
      },
      "description": "Activate the extension"
    }
  },
  "offline_enabled": false
}