AI ON THE GO

AI ON THE GO

Get instant, personalized AI assistance on any website with AI ON THE GO, powered by ChatGPT. Streamline your workflow today!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AI ON THE GO",
  "description": "Get instant, personalized AI assistance on any website with AI ON THE GO, powered by ChatGPT. Streamline your workflow today!",
  "version": "1.3",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "main.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "fav.png",
    "32": "fav.png",
    "48": "main-icon.png",
    "128": "fav.png"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "icon.svg",
        "main-icon.png",
        "copy.svg"
      ]
    }
  ]
}