Enigma, ChatGPT Sidebar

Enigma, ChatGPT Sidebar

Enigma is an AI assistant sidebar. It brings the power of AI into your hands. Access ChatGPT everywhere.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Enigma, ChatGPT Sidebar",
  "version": "0.1.0",
  "manifest_version": 3,
  "description": "Enigma is an AI assistant sidebar. It brings the power of AI into your hands. Access ChatGPT everywhere.",
  "icons": {
    "48": "icon-E-purple-rounded-border-64.png",
    "128": "icon-purple-rounded-border-128.png"
  },
  "action": {
    "default_popup": "./index.html"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "activeTab",
    "unlimitedStorage"
  ],
  "externally_connectable": {
    "matches": [
      "https://enigmalabs.site/*",
      "https://api.enigmalabs.site/*"
    ]
  },
  "background": {
    "service_worker": "./static/js/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "./static/js/attach.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "attach.css",
        "enigma-icon-m.png",
        "enigma-icon-l.png",
        "icon-purple-rounded-border-256.png"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}