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"입니다.
확장 프로그램 스크린샷
Domain Blocker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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", "*:\/\/*\/*" ] } |