Fake-Shop Detector

Fake-Shop Detector

The Fake Shop Detector warns you of fraudulent offers, directly in your internet browser!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "2.0.2",
  "default_locale": "en",
  "icons": {
    "16": "images/logo_16.png",
    "48": "images/logo_48.png",
    "128": "images/logo_128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{b5c1c196-56a8-4eee-92c2-f1c497e3a1d3}"
    }
  },
  "background": {
    "scripts": [
      "/background.js"
    ]
  },
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "<all_urls>",
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/content.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  }
}