Domain whitelist
World's smallest interactive ad blocker, only allow requests from user-defined list of domains.
Что такое Domain whitelist?
Domain whitelist - это расширение Chrome, разработанное Dusan Halicky, и его основная функция - "World's smallest interactive ad blocker, only allow requests from user-defined list of domains.".
Снимки экрана расширения
Скачать файл CRX расширения Domain whitelist
Скачайте файлы расширений Domain whitelist в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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" } |