BuyOn Cashback

BuyOn Cashback

Estensione che ti notifica la presenza di un negozio su BuyOn.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BuyOn Cashback",
  "version": "9.3.2",
  "description": "Estensione che ti notifica la presenza di un negozio su BuyOn.",
  "options_ui": {
    "page": "pages/options.html"
  },
  "icons": {
    "16": "images/buyon-16.png",
    "19": "images/buyon-19.png",
    "32": "images/buyon-32.png",
    "38": "images/buyon-38.png",
    "48": "images/buyon-48.png",
    "128": "images/buyon-128.png"
  },
  "manifest_version": 3,
  "background": {
    "service_worker": "background.min.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/buyon-icon-white.svg",
        "fonts/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "scripts/content_script.min.js"
      ]
    },
    {
      "matches": [
        "https://*.booking.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "scripts/booking.min.js"
      ]
    },
    {
      "matches": [
        "https://*.amazon.it/*"
      ],
      "run_at": "document_end",
      "js": [
        "scripts/amazon.min.js"
      ]
    },
    {
      "matches": [
        "https://www.buyon.it/*",
        "https://beta.buyon.it/*",
        "https://localhost:44370/*"
      ],
      "run_at": "document_start",
      "js": [
        "scripts/website.min.js"
      ]
    }
  ],
  "action": {
    "default_icon": "images/buyon-38.png",
    "default_title": "BuyOn"
  },
  "permissions": [
    "storage",
    "cookies",
    "tabs",
    "alarms"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "<all_urls>"
  ],
  "optional_permissions": [
    "privacy"
  ]
}