Privatus_ Firefox

Examine source code of Privatus_

Inspect and view changes in Privatus_ source codes across current and past versions
Please login to examine the extension's source code.
manifest.json
{
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "version": "1.10",
  "default_locale": "en",
  "description": "__MSG_extensionDescription__",
  "permissions": [
    "dns",
    "storage",
    "tabs",
    "webNavigation",
    "privacy",
    "declarativeNetRequest",
    "notifications",
    "scripting",
    "webRequest",
    "contextMenus",
    "alarms"
  ],
  "optional_permissions": [
    "browsingData",
    "proxy",
    "declarativeNetRequestFeedback"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "src/background/telemetry.js",
      "src/background/request-engine.js",
      "src/background/privacy-api.js",
      "src/background.js"
    ]
  },
  "action": {
    "default_popup": "src/popup.html",
    "default_title": "Privatus",
    "default_icon": {
      "16": "src/icons/icon-16.png",
      "32": "src/icons/icon-32.png",
      "48": "src/icons/icon-48.png",
      "96": "src/icons/icon-96.png"
    }
  },
  "options_ui": {
    "page": "src/options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/js/event-bus.js",
        "src/js/storage-partition.js",
        "src/js/side-channel-guard.js",
        "src/js/privacy-budget.js",
        "src/js/worker-guard.js",
        "src/js/script-injection-guard.js",
        "src/js/dom-shield.js",
        "src/js/proto-shield.js",
        "src/js/iframe-css-guard.js",
        "src/js/network-monitor.js",
        "src/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/js/local-encryption.js",
        "src/js/bloom-filter.js",
        "src/js/link-decoration-guard.js",
        "src/js/ast-script-analyzer.js",
        "src/js/consent-manager.js",
        "src/js/sri-plus.js",
        "src/js/threat-intelligence.js",
        "src/js/advanced-threat-detector.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "src/js/worker-guard.js",
        "src/js/sidepanel-loader.js",
        "src/wasm/xxhash32.wasm",
        "src/js/proto-shield.js",
        "src/js/ast-script-analyzer.js",
        "src/js/iframe-css-guard.js",
        "src/js/sri-plus.js",
        "src/js/advanced-threat-detector.js",
        "src/js/bloom-filter.js",
        "src/offscreen.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "tracker_rules",
        "enabled": true,
        "path": "src/rules/tracker_rules.json"
      },
      {
        "id": "malware_rules",
        "enabled": true,
        "path": "src/rules/malware_rules.json"
      },
      {
        "id": "cryptominer_rules",
        "enabled": true,
        "path": "src/rules/cryptominer_rules.json"
      },
      {
        "id": "cname_rules",
        "enabled": true,
        "path": "src/rules/cname_rules.json"
      },
      {
        "id": "social_rules",
        "enabled": true,
        "path": "src/rules/social_rules.json"
      },
      {
        "id": "fingerprint_rules",
        "enabled": true,
        "path": "src/rules/fingerprint_rules.json"
      },
      {
        "id": "jwt_rules",
        "enabled": true,
        "path": "src/rules/jwt_rules.json"
      },
      {
        "id": "phishing_rules",
        "enabled": true,
        "path": "src/rules/phishing_rules.json"
      },
      {
        "id": "coinminer_extended_rules",
        "enabled": true,
        "path": "src/rules/coinminer_extended_rules.json"
      }
    ]
  },
  "icons": {
    "16": "src/icons/icon-16.png",
    "32": "src/icons/icon-32.png",
    "48": "src/icons/icon-48.png",
    "96": "src/icons/icon-96.png"
  },
  "content_security_policy": {
    "extension_pages": "connect-src https://crt.sh https://api.pwnedpasswords.com https://haveibeenpwned.com https://easylist.to https://pgl.yoyo.org https://malware-filter.gitlab.io https://raw.githubusercontent.com https://phishing.army https://s3.amazonaws.com https://urlhaus.abuse.ch https://big.oisd.nl https://small.oisd.nl https://adguardteam.github.io https://blocklistproject.github.io https://zerodot1.gitlab.io https://badmojr.gitlab.io https://filterlists.com https://v.firebog.net https://www.i-dont-care-about-cookies.eu https://hblock.molinero.dev https://someonewhocares.org https://durablenapkin.github.io; default-src 'self'; script-src 'self' 'wasm-unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; object-src 'none'; frame-src 'self'; worker-src 'self'; base-uri 'self'; form-action 'self';"
  },
  "commands": {
    "_execute_sidebar_action": {
      "suggested_key": {
        "default": "Alt+Shift+P"
      },
      "description": "Abrir panel lateral de Privatus"
    },
    "whitelist-domain": {
      "suggested_key": {
        "default": "Alt+Shift+W"
      },
      "description": "Añadir dominio activo a la lista blanca permanente"
    },
    "pause-1h": {
      "suggested_key": {
        "default": "Alt+Shift+1"
      },
      "description": "Pausar protección 1 hora para el dominio activo"
    },
    "block-domain": {
      "suggested_key": {
        "default": "Alt+Shift+B"
      },
      "description": "Bloquear el dominio activo"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "privatus@extension",
      "strict_min_version": "140.0",
      "data_collection_permissions": {
        "required": [
          "none"
        ],
        "hostPermissions": {
          "description": "Used to intercept and analyze network requests for tracker/malware blocking. No data is collected or transmitted."
        },
        "permissions": {}
      }
    },
    "gecko_android": {
      "strict_min_version": "142.0"
    }
  },
  "sidebar_action": {
    "default_title": "Privatus",
    "default_panel": "src/sidepanel.html",
    "default_icon": {
      "16": "src/icons/icon-16.png",
      "32": "src/icons/icon-32.png",
      "48": "src/icons/icon-48.png"
    }
  }
}

Best Privatus_ Alternatives

Here are some Firefox add-ons that are similar to Privatus_: