AI Shop Buddy

AI Shop Buddy

Simplify online shopping with your personal AI Shop Buddy

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_app_name__",
  "version": "2.7.3",
  "description": "__MSG_app_desc__",
  "permissions": [
    "contextMenus",
    "storage",
    "scripting",
    "alarms",
    "tabs"
  ],
  "optional_permissions": [
    "webRequest",
    "webNavigation"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_icon": "images/icon.png",
    "default_popup": "consent.html"
  },
  "default_locale": "en",
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "redirectcheck.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/.png",
        "popup.js",
        "style.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "/libs/extend-native-history-api.js",
        "/libs/requests.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}