Examine source code of Third-party Request Blocker

Inspect and view changes in Third-party Request Blocker source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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": "tprb.addon@searxes.danwin1210.me",
      "strict_min_version": "60.0"
    }
  }
}