IsThereAnyDeal Everywhere

IsThereAnyDeal Everywhere

Check game prices and the best deals on any webpage with IsThereAnyDeal

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "IsThereAnyDeal Everywhere",
  "version": "2.0.1",
  "description": "Check game prices and the best deals on any webpage with IsThereAnyDeal",
  "homepage_url": "https://everywhere.isthereanydeal.com/",
  "icons": {
    "16": "assets/icon16.png",
    "24": "assets/icon24.png",
    "32": "assets/icon32.png",
    "48": "assets/icon48.png",
    "64": "assets/icon64.png",
    "96": "assets/icon96.png",
    "128": "assets/icon128.png"
  },
  "content_scripts": [
    {
      "css": [
        "content/content.css"
      ],
      "js": [
        "content/content.js"
      ],
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://isthereanydeal.com/*",
        "*://chat.openai.com/*",
        "*://store.steampowered.com/account/licenses/",
        "*://localhost/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background/background.js",
    "scripts": [
      "background/background.js"
    ]
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "permissions": [
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{28e2367d-a8b7-44af-a674-868243c849d9}"
    }
  }
}