Bestshopping Cashback & Rabattcodes

Bestshopping Cashback & Rabattcodes

Eine Browser-Erweiterung, die Sie benachrichtigt, wenn Sie eine Website mit Bestshopping.com Cashback durchsuchen

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Bestshopping Cashback & Rabattcodes",
  "description": "Die Browsererweiterung MEMO zeigt automatisch an, ob du bei einem Shop mit Cashback von Bestshopping einkaufen kannst.",
  "homepage_url": "https://de.bestshopping.com",
  "author": "POINTER S.R.L.",
  "version": "2.2.19",
  "manifest_version": 3,
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "webRequest",
    "storage",
    "cookies"
  ],
  "host_permissions": [
    "<all_urls>",
    "https://*.google.com/*",
    "https://*.google.it/*",
    "https://*.bing.com/*",
    "https://*.search.yahoo.com/*",
    "https://*.bestshopping.com/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/16x16.png",
      "32": "/images/32x32.png",
      "48": "/images/48x48.png",
      "128": "/images/128x128.png"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{84518d60-4cd0-408e-be69-14c14c44ca8e}"
    }
  },
  "icons": {
    "16": "/images/16x16.png",
    "32": "/images/32x32.png",
    "48": "/images/48x48.png",
    "128": "/images/128x128.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "content_scripts": [
    {
      "js": [
        "checker_box.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://*.google.com/*",
        "https://*.google.it/*",
        "https://*.bing.com/*",
        "https://*.search.yahoo.com/*",
        "https://*.bestshopping.com/*",
        "https://*.gov.it/*",
        "https://*.sieltecloud.it/*"
      ],
      "run_at": "document_idle",
      "css": [
        "styles_box.css"
      ]
    },
    {
      "js": [
        "translations.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "jump.js"
      ],
      "matches": [
        "https://*.bestshopping.com/*"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://*.google.com/*",
        "https://*.google.it/*",
        "https://*.bing.com/*",
        "https://*.search.yahoo.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "content.js"
      ],
      "css": [
        "content_bs.css"
      ]
    },
    {
      "matches": [
        "https://de.bestshopping.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "login.js"
      ]
    }
  ],
  "default_locale": "de"
}