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 - это расширение Chrome, разработанное 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 расширения YAM Allowlist Manager

Скачайте файлы расширений YAM Allowlist Manager в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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:\/\/*\/*"
    ]
}