Domain whitelist
World's smallest interactive ad blocker, only allow requests from user-defined list of domains.
Domain whitelist란 무엇입니까?
Domain whitelist은(는) Dusan Halicky에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "World's smallest interactive ad blocker, only allow requests from user-defined list of domains."입니다.
확장 프로그램 스크린샷
Domain whitelist 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Domain whitelist (DW) is worlds smallest interactive ad blocker. It blocks all HTTP requests. If you want to see some website, you must explicitly allow its domain (in popup window displayed when you click on DW button). After you install DW, first few hours will be very intense! It's not for everybody. DW is extremely small, the source code has only 5 kB. This is extremely important because now anybody can read the source and understand it. The best way how to use DW is to create your own extension based on it, because when it comes to ad blocking, you should not trust anyone. Not even me! DW is distributed under GNU GPL licence version 3 or later. Please report bugs to [email protected].
확장 프로그램 기본 정보
이름 | Domain whitelist |
ID | pdfmaijcdceohdpbclfdidiobpfpdkda |
공식 URL | https://chromewebstore.google.com/detail/domain-whitelist/pdfmaijcdceohdpbclfdidiobpfpdkda |
설명 | World's smallest interactive ad blocker, only allow requests from user-defined list of domains. |
파일 크기 | 12.3 KB |
설치 횟수 | 202 |
현재 버전 | 1.0.40 |
최근 업데이트 | 2020-04-27 |
출시 날짜 | 2020-04-24 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Dusan Halicky |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://ghost.sk/ |
개인정보 보호 정책 페이지 URL | https://ghost.sk/privacy-policy.html |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": { "email": "[email protected]" }, "background": { "scripts": [ "list.js", "background.js" ] }, "browser_action": { "default_icon": { "19": "icon\/19.png" }, "default_popup": "popup.html", "default_title": "Domain whitelist" }, "name": "Domain whitelist", "description": "World's smallest interactive ad blocker, only allow requests from user-defined list of domains.", "icons": { "16": "icon\/16.png", "19": "icon\/19.png", "32": "icon\/32.png", "48": "icon\/48.png", "128": "icon\/128.png" }, "manifest_version": 2, "minimum_chrome_version": "18.0", "options_page": "options.html", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "webRequest", "webRequestBlocking", "contextMenus" ], "version": "1.0.40" } |