AI Toolbar - Reclaim Your Time Now

AI Toolbar - Reclaim Your Time Now

Simplify your life. Generate, Respond, Voice activation, combine prompts, Summarize text anywhere in the Web at no charge!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AI Toolbar - Reclaim Your Time Now",
  "description": "Simplify your life. Generate, Respond, Voice activation, combine prompts, Summarize text anywhere in the Web at no charge!",
  "version": "3.0.5",
  "manifest_version": 3,
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "action": {},
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus",
    "webNavigation"
  ],
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "svg/*.svg",
        "png/*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ]
}