Privasee

Privasee

Websites track you. They collect your personal information. With Privasee, you can finally browse the internet with peace of mind!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "public/js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "img/icon_19.png",
      "38": "img/icon_38.png"
    },
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "public/css/noatb.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "public/js/content-scripts/element-hiding.js"
      ],
      "match_about_blank": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "manifest_version": 2,
  "permissions": [
    "contextMenus",
    "webRequest",
    "webRequestBlocking",
    "*://*/*",
    "webNavigation",
    "activeTab",
    "tabs",
    "storage",
    "<all_urls>",
    "alarms"
  ],
  "version": "2019.04.09",
  "web_accessible_resources": [
    "img/*"
  ]
}