Web Assistant - ChatGPT everywhere

Web Assistant - ChatGPT everywhere

Have an AI assistant everywhere you go. A ChatGPT Copilot / writing assistant on the web that is seamlessly integrated into your…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Web Assistant - ChatGPT everywhere",
  "version": "0.1.121",
  "permissions": [
    "contextMenus",
    "activeTab"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/assets/js/helpers.js",
        "/assets/js/html.js",
        "/assets/js/googleDocs.js",
        "/assets/js/drawer.js",
        "content.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "/assets/img/icon16.png",
    "32": "/assets/img/icon32.png",
    "48": "/assets/img/icon48.png",
    "128": "/assets/img/icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/assets/img/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}