Auto Radio Button Checker

takes a snapshot of a page you have checked to automatically checks the buttons you access that page.

Что такое Auto Radio Button Checker?

Auto Radio Button Checker - это расширение Chrome, разработанное juhansae, и его основная функция - "takes a snapshot of a page you have checked to automatically checks the buttons you access that page.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Auto Radio Button Checker

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

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

                        This Chrome extension takes a snapshot of a page of radio buttons you have checked and automatically checks the buttons every time you access that page. This program is convenient for you when accessing a site where you have to check the radio buttons every time you visit.                    

Основная информация о расширении

Название Auto Radio Button Checker Auto Radio Button Checker
ID phkflnpejpgehjgficbbikeclfcageic
Официальный URL https://chromewebstore.google.com/detail/auto-radio-button-checker/phkflnpejpgehjgficbbikeclfcageic
Описание takes a snapshot of a page you have checked to automatically checks the buttons you access that page.
Размер файла 44.41 KB
Количество установок 527
Текущая Версия 0.11
Последнее Обновление 2020-09-23
Дата публикации 2020-09-23
Рейтинг 5.00/5 Всего 3 оценок
Разработчик juhansae
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/Verssae/AutoRadioChecker
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Auto Radio Button Checker",
    "description": "takes a snapshot of a page you have checked to automatically checks the buttons you access that page.",
    "version": "0.11",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "",
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ]
}