PrivatizeMe

PrivatizeMe

PrivatizeMe: Personal Data Control Simplified

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "PrivatizeMe",
  "short_name": "PrivatizeMe",
  "description": "PrivatizeMe: Personal Data Control Simplified",
  "version": "1.0.44",
  "browser_action": {
    "default_icon": "resources/Disable_icon_128.png",
    "default_popup": "popup.html"
  },
  "background": {
    "page": "bg.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "*://*/*"
      ],
      "js": [
        "constants.js",
        "jquery.min.js",
        "message_client.js",
        "observer.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "icons": {
    "16": "resources/Disable_icon_16.png",
    "32": "resources/Disable_icon_32.png",
    "48": "resources/Disable_icon_48.png",
    "64": "resources/Disable_icon_64.png",
    "128": "resources/Disable_icon_128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "cookies",
    "webRequest",
    "webRequestBlocking",
    "privacy",
    "storage",
    "browsingData",
    "http://*/*",
    "https://*/*"
  ]
}