Prizle

Prizle

Prizle Charity shopping for Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Prizle",
  "version": "2.20",
  "manifest_version": 2,
  "description": "Prizle Charity shopping for Chrome",
  "icons": {
    "16": "img/icons/icon-16.png",
    "32": "img/icons/icon-38.png",
    "64": "img/icons/icon-64.png",
    "128": "img/icons/icon-128.png"
  },
  "default_locale": "fr",
  "background": {
    "scripts": [
      "app/vendor/async.js",
      "app/config/config.js",
      "app/vendor/psl.min.js",
      "app/vendor/purify.min.js",
      "app/class/background/utils.js",
      "app/class/background/user.js",
      "app/class/background/retailer.js",
      "app/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "cookies",
    "storage",
    "webRequest",
    "http://*.prizle.com/*",
    "https://*.prizle.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "app/vendor/async.js",
        "app/vendor/psl.min.js",
        "app/vendor/docCookies.js",
        "app/vendor/purify.min.js",
        "app/config/config.js",
        "app/class/foreground/utils.js",
        "app/class/foreground/data.js",
        "app/class/foreground/retailer.js",
        "app/class/foreground/display.js",
        "app/foreground.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "img/icons/grey/favicon-16x16.png",
      "32": "img/icons/grey/favicon-32x32.png",
      "96": "img/icons/grey/favicon-96x96.png"
    },
    "default_title": "Prizle",
    "default_popup": "html/popup.html"
  },
  "web_accessible_resources": [
    "img/logo/logo-1x.svg",
    "js/ads.js",
    "css/popup-style.css",
    "js/popup.js"
  ]
}