Auto Radio Button Checker

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

Co to jest Auto Radio Button Checker?

Auto Radio Button Checker to rozszerzenie Chrome opracowane przez juhansae, a jego główną funkcją jest „takes a snapshot of a page you have checked to automatically checks the buttons you access that page.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Auto Radio Button Checker

Pobierz pliki rozszerzeń Auto Radio Button Checker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Auto Radio Button Checker Auto Radio Button Checker
ID phkflnpejpgehjgficbbikeclfcageic
Oficjalny URL https://chromewebstore.google.com/detail/auto-radio-button-checker/phkflnpejpgehjgficbbikeclfcageic
Opis takes a snapshot of a page you have checked to automatically checks the buttons you access that page.
Rozmiar pliku 44.41 KB
Liczba instalacji 527
Aktualna Wersja 0.11
Ostatnia Aktualizacja 2020-09-23
Data Publikacji 2020-09-23
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper juhansae
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/Verssae/AutoRadioChecker
Obsługiwane Języki 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"
            ]
        }
    ]
}