CyDec Security Anti-Fp

CyDec Security Anti-Fp

Stop trackers from accurately fingerprinting your system through obfuscation and deception.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CyDec Security Anti-Fp",
  "short_name": "Anti-Fp",
  "version": "1.2021.363.1841",
  "author": "Heilig Defense",
  "description": "Stop trackers from accurately fingerprinting your system through obfuscation and deception.",
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "webRequest",
    "notifications",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "background": {
    "scripts": [
      "background.min.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content.min.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "css.min.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "img/icons/cydec16.png",
      "32": "img/icons/cydec32.png",
      "48": "img/icons/cydec48.png",
      "128": "img/icons/cydec128.png"
    }
  },
  "icons": {
    "16": "img/icons/cydec16.png",
    "32": "img/icons/cydec32.png",
    "48": "img/icons/cydec48.png",
    "128": "img/icons/cydec128.png"
  },
  "manifest_version": 2
}