Domain whitelist

World's smallest interactive ad blocker, only allow requests from user-defined list of domains.

Domain whitelist क्या है?

Domain whitelist Dusan Halicky द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "World's smallest interactive ad blocker, only allow requests from user-defined list of domains."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Domain whitelist एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
}