ChatGenie for Chatgpt

ChatGenie for Chatgpt

The ultimate browser extension for accessing 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": "__MSG_extName__",
  "description": "__MSG_extShortDesc__",
  "version": "1.1.2",
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "icons/16.png",
      "48": "icons/48.png",
      "128": "icons/128.png",
      "300": "icons/300.png"
    },
    "default_title": "__MSG_extName__"
  },
  "default_locale": "en",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png",
    "300": "icons/300.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+K",
        "mac": "MacCtrl+Shift+K",
        "chromeos": "Ctrl+Shift+K",
        "linux": "Ctrl+Shift+K"
      }
    }
  },
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "alarms",
    "storage",
    "contextMenus",
    "scripting",
    "declarativeNetRequest"
  ],
  "omnibox": {
    "keyword": "gpt"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "css/content-script.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}