Cashgoback.pl

Cashgoback.pl

Otrzymuj zwrot części wydanej kwoty za zakupy. Wtyczka przypomina Ci, gdzie możesz otrzymać zwrot. Nie przegap żadnego zwrotu!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "short_name": "Cashgoback",
  "author": "Cashgoback.pl",
  "description": "__MSG_extensionDescription__",
  "default_locale": "pl",
  "homepage_url": "https://cashgoback.pl",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "icons/sygnatura-16.png",
    "48": "icons/sygnatura-48.png",
    "128": "icons/sygnatura-128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "48": "icons/sygnatura-48.png"
    }
  },
  "web_accessible_resources": [
    "assets/*",
    "js/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/content-script.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.cashgoback.pl/*"
    ]
  },
  "version": "2.0.3",
  "content_security_policy": "script-src 'self' ; object-src 'self'"
}