AI Anywhere for ChatGPT

AI Anywhere for ChatGPT

ChatGPT enhancer - adds context menu, keyboard shortcuts, history and more!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "3.2",
  "author": "Juraj Mäsiar",
  "default_locale": "en",
  "name": "__MSG_app_name__",
  "description": "__MSG_app_desc__",
  "icons": {
    "48": "48.png",
    "128": "128.png"
  },
  "background": {
    "scripts": [
      "background_ai.worker.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "128": "128.png"
    },
    "default_popup": "popup/popup.html",
    "default_area": "navbar"
  },
  "options_ui": {
    "page": "editor/editor.html",
    "open_in_tab": true
  },
  "commands": {
    "open_ai": {
      "suggested_key": {
        "default": "Alt+I"
      },
      "description": "Open modal window."
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.chatgpt.com/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "content_scripts/ai.cs.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "editor/editor.css",
    "editor/editor.html",
    "editor/editor.js",
    "utils/svg/resize-corner.svg",
    "128.png"
  ],
  "permissions": [
    "contextMenus",
    "storage",
    "activeTab",
    "scripting",
    "webRequest",
    "declarativeNetRequestWithHostAccess",
    "webRequestBlocking",
    "*://*.chatgpt.com/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]_AI",
      "strict_min_version": "115.0"
    }
  }
}