Domain Blocker

Helps you hide ads, avoid tracking, load pages faster, fight procrastination

什么是Domain Blocker?

Domain Blocker是由Peta Sittek开发的Chrome扩展程序,该扩展的主要功能是“Helps you hide ads, avoid tracking, load pages faster, fight procrastination”。

扩展截图

screenshot
screenshot
screenshot

下载Domain Blocker扩展crx文件

下载Domain Blocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Domain Blocker is written to be as efficient as possible, in terms of speed (CPU) and memory (RAM).

The main idea is that there's little meaning to use predefined blocklist consisting of tens of thousands rules when you'll ever use only small percentage of it. In Domain Blocker you build the blocklist as you go along.

🚀 Hide ads
  ⭐️ by blocking advertisement domains you disable the display of some of those pervasive ads

🚀 Avoid tracking
  ⭐️ by blocking tracking domains you prevent the services to acquire information about your browsing behaviour

🚀 Load pages faster
  ⭐️ by blocking unnecessary domains (requests) you save traffic and make pages loading faster!

🚀 Fight procrastination
  ⭐️ just keep facebook.com out of the Whitelist and... do more!

🚀 Permissions explained
  ⭐️ "Read and change all your data on the websites you visit": to be able to intercept HTTP request before they leave your browser

Completely free and with no ads

Made with ♥ by Peta Sittek                    

扩展基本信息

名称 Domain Blocker Domain Blocker
ID ggdcjplapccgoinblmidpkoocfafajfa
官方URL https://chromewebstore.google.com/detail/domain-blocker/ggdcjplapccgoinblmidpkoocfafajfa
简介 Helps you hide ads, avoid tracking, load pages faster, fight procrastination
文件大小 207 KB
安装次数 11,432
当前版本 1.6.2
更新时间 2017-07-25
上架时间 2017-07-25
评分 4.71/5 共85次评分
开发者 Peta Sittek
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://chrome.google.com/webstore/detail/domain-blocker/ggdcjplapccgoinblmidpkoocfafajfa/support
隐私政策页面URL https://www.petasittek.com/chrome-extensions-privacy-policy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Domain Blocker",
    "description": "Helps you hide ads, avoid tracking, load pages faster, fight procrastination",
    "version": "1.6.2",
    "icons": {
        "16": "icon\/icon-16.png",
        "32": "icon\/icon-32.png",
        "48": "icon\/icon-48.png",
        "128": "icon\/icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icon\/icon-19.png",
            "38": "icon\/icon-38.png"
        },
        "default_popup": "html\/popup.html",
        "default_title": "Domain Blocker"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "unlimitedStorage",
        "contextMenus",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*\/*"
    ]
}