YAM Allowlist Manager

Browser extension that automatically blocks all pages from any website that is not in your list of allowed websites.

YAM Allowlist Manager क्या है?

YAM Allowlist Manager https://sarangak.github.io/yam-allowlist-manager द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Browser extension that automatically blocks all pages from any website that is not in your list of allowed websites."।

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

screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में YAM Allowlist Manager एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        YAM is an open-source, privacy-focused website manager.  You create a list of allowed websites, and this extension will block access to all pages that are not in that list.

The list is synchronized through Chrome to all of your devices, so you can log into Chrome with your child's account, add or modify entries in the list and they will synchronize in near real-time to a child's computer.

You can also choose to block all content from other sites, but this requires a more complex configuration since many pages require content from other sites to operate correctly.

Need help?  Send me an email or open an issue on Github: https://github.com/sarangak/yam-allowlist-manager                    

एक्सटेंशन की मूल जानकारी

नाम YAM Allowlist Manager YAM Allowlist Manager
ID aeepebmcdnjkjobnhfagojgfonkappej
आधिकारिक URL https://chromewebstore.google.com/detail/yam-allowlist-manager/aeepebmcdnjkjobnhfagojgfonkappej
विवरण Browser extension that automatically blocks all pages from any website that is not in your list of allowed websites.
फ़ाइल का आकार 238 KB
स्थापना संख्या 663
वर्तमान संस्करण 5.0.0
अंतिम अपडेट 2023-04-29
प्रकाशन तिथि 2020-06-19
रेटिंग 3.33/5 कुल 3 रेटिंग्स
डेवलपर https://sarangak.github.io/yam-allowlist-manager
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/sarangak/yam-allowlist-manager
समर्थित भाषाएँ en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "YAM Allowlist Manager",
    "description": "Browser extension that automatically blocks all pages from any website that is not in your list of allowed websites.",
    "version": "5.0.0",
    "minimum_chrome_version": "96.0",
    "icons": {
        "16": "assets\/icon_16.png",
        "19": "assets\/icon_19.png",
        "32": "assets\/icon_32.png",
        "38": "assets\/icon_38.png",
        "128": "assets\/icon_128.png",
        "256": "assets\/icon_256.png",
        "512": "assets\/icon_512.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "rules",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "permissions": [
        "storage",
        "declarativeNetRequestWithHostAccess"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}