Fun-c

Fun-c

Fun-C vous reverse une partie du montant de vos achats ! Soyez prévenu lorsque le marchand que vous visitez propose un CashBack.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Fun-c",
  "author": "Hakamae",
  "version": "1.0.0.5",
  "description": "Fun-C vous reverse une partie du montant de vos achats ! Soyez prévenu lorsque le marchand que vous visitez propose un CashBack.",
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "browser_action": {
    "default_popup": "pages/privacy-guard.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-3.4.1.min.js",
        "handlebars.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "templates.html",
    "jquery-3.4.1.min",
    "handlebars.js",
    "contentGlobal.js"
  ],
  "permissions": [
    "storage",
    "file://*/*"
  ],
  "content_security_policy": "script-src 'self' ; object-src 'self'"
}