Third-party Request Blocker

Third-party Request Blocker

Запрос политики (RequestPolicy) для Quantum. Запретите вашему браузеру подключаться к сторонним ресурсам без согласия пользователя.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Third-party Request Blocker",
  "description": "Запретите вашему браузеру подключаться к сторонним ресурсам без согласия пользователя.",
  "version": "1.1.21.2resigned1",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "storage",
    "unlimitedStorage",
    "activeTab",
    "tabs",
    "webNavigation",
    "menus",
    "privacy",
    "downloads"
  ],
  "browser_action": {
    "browser_style": false,
    "default_icon": {
      "32": "icons/s/ob_red.png"
    },
    "default_title": "TPRB",
    "default_popup": "tprb_dlg.html"
  },
  "page_action": {
    "browser_style": false,
    "default_icon": "icons/s/ob_red.png",
    "default_title": "TPRB"
  },
  "options_ui": {
    "page": "tprb_cfg.html",
    "browser_style": false
  },
  "icons": {
    "32": "icons/s/ob_red.png"
  },
  "background": {
    "scripts": [
      "tprb_core.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "tprb_cs.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "60.0"
    }
  }
}