Refundo Toolbar

Refundo Toolbar

Doplněk Refundo vás automaticky upozorní na možnost získání cashbacku při návštěvě e-shopu, který je součástí naší nabídky.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "author": "Refundo s.r.o.",
  "name": "Refundo Toolbar",
  "short_name": "Refundo",
  "version": "2.3.2",
  "default_locale": "cs",
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "webRequest",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_icon": {
      "16": "images/icon_16.png",
      "48": "images/icon_48.png",
      "128": "images/icon_128.png"
    },
    "default_title": "Refundo Toolbar"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "infobar/*",
        "js/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "infobar/script.js"
      ],
      "css": [
        "infobar/style.css"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}