Simple Privacy Settings

Simple Privacy Settings

Easily control privacy settings of your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Simple Privacy Settings",
  "description": "Easily control privacy settings of your browser.",
  "version": "2.0.1",
  "manifest_version": 3,
  "background": {
    "service_worker": "sw.js"
  },
  "icons": {
    "48": "static/icon-48.png",
    "128": "static/icon-128.png"
  },
  "permissions": [
    "privacy",
    "storage",
    "contentSettings",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "minimum_chrome_version": "111",
  "action": {
    "default_icon": "static/icon-128.png",
    "default_title": "Simple Privacy Settings",
    "default_popup": "popup.html"
  },
  "homepage_url": "https://browsernative.com/simple-privacy-settings/",
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ping",
        "enabled": false,
        "path": "dnr_rules/ping_rules.json"
      },
      {
        "id": "font",
        "enabled": false,
        "path": "dnr_rules/font_rules.json"
      },
      {
        "id": "ch",
        "enabled": false,
        "path": "dnr_rules/ch_rules.json"
      },
      {
        "id": "lang",
        "enabled": false,
        "path": "dnr_rules/lang_rules.json"
      },
      {
        "id": "query",
        "enabled": false,
        "path": "dnr_rules/query_rules.json"
      }
    ]
  }
}