ChatGPT Shortcut

ChatGPT Shortcut

Maximize your efficiency and productivity

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "ChatGPT Shortcut",
  "version": "3.2.1",
  "default_locale": "en",
  "description": "__MSG_extensionDescription__",
  "permissions": [
    "storage",
    "scripting",
    "tabs"
  ],
  "icons": {
    "200": "logo.png"
  },
  "action": {
    "default_popup": "_locales/en/index.html",
    "default_icon": {
      "200": "logo.png"
    }
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+S",
        "mac": "MacCtrl+Shift+S"
      },
      "description": "__MSG_activateExtension__"
    }
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chatgpt.com/*",
        "https://gemini.google.com/*",
        "https://claude.ai/*",
        "https://yiyan.baidu.com/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://chatgpt.com/*",
        "https://gemini.google.com/*",
        "https://claude.ai/*",
        "https://yiyan.baidu.com/*"
      ],
      "resources": [
        "assets/icon.svg",
        "assets/toggle.svg"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}