Power Tools for ChatGPT

Power Tools for ChatGPT

Supercharge Your Conversations with ChatGPT with Power Tools for Chat GPT Browser Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extShortDesc__",
  "version": "1.0.7",
  "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": [
    "storage",
    "scripting",
    "alarms",
    "contextMenus",
    "declarativeNetRequest"
  ],
  "omnibox": {
    "keyword": "gpt"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "css/content-script.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}