Cashback IT-Bestshopping

Cashback IT-Bestshopping

This extension alerts you when surfing a web store that can provide you a cash back through bestshopping.com. Italy market only.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Cashback IT-Bestshopping",
  "description": "MEMO è l'estensione del Browser che ti avvisa quando navighi su di un sito web con un cashback di bestshopping.com",
  "homepage_url": "https://it.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"
    }
  },
  "icons": {
    "16": "/images/16x16.png",
    "32": "/images/32x32.png",
    "48": "/images/48x48.png",
    "128": "/images/128x128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "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://it.bestshopping.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "login.js"
      ]
    }
  ],
  "default_locale": "it"
}