Rachel's GDPR Consent Manager

Rachel's GDPR Consent Manager

Rachel's cookie manager is developed by KCL, UoS, IIT KGP as part of a study to understand how GDPR consent managed by users.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Rachel's GDPR Consent Manager",
  "version": "3.1.7",
  "description": "Rachel's cookie manager is developed by KCL, UoS, IIT KGP as part of a study to understand how GDPR consent managed by users.",
  "short_name": "RachelCookie",
  "offline_enabled": true,
  "icons": {
    "128": "icon128.png"
  },
  "permissions": [
    "activeTab",
    "webRequest",
    "<all_urls>",
    "tabs",
    "storage",
    "cookies",
    "downloads",
    "devtools://*/*",
    "chrome-extension://*",
    "https://nms.kcl.ac.uk/netsys/*"
  ],
  "browser_action": {
    "default_title": "Rachel's Cookie Manager",
    "default_popup": "popup.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "background": {
    "scripts": [
      "ext-libs/dexie.js",
      "ext-libs/mljs.min.js",
      "ext-libs/store.min.js",
      "js/classify.js",
      "js/consentcheck.js",
      "js/store.js",
      "js/capture.js",
      "js/background.js"
    ]
  },
  "options_page": "first-run.html"
}