Auto Radio Button Checker

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

Was ist Auto Radio Button Checker?

Auto Radio Button Checker ist eine Chrome-Erweiterung, die von juhansae entwickelt wurde, und ihr Hauptmerkmal ist "takes a snapshot of a page you have checked to automatically checks the buttons you access that page.".

Erweiterungsscreenshots

screenshot

Auto Radio Button Checker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Auto Radio Button Checker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Auto Radio Button Checker Auto Radio Button Checker
ID phkflnpejpgehjgficbbikeclfcageic
Offizielle URL https://chromewebstore.google.com/detail/auto-radio-button-checker/phkflnpejpgehjgficbbikeclfcageic
Beschreibung takes a snapshot of a page you have checked to automatically checks the buttons you access that page.
Dateigröße 44.41 KB
Installationsanzahl 527
Aktuelle Version 0.11
Letztes Update 2020-09-23
Veröffentlichungsdatum 2020-09-23
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler juhansae
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Verssae/AutoRadioChecker
Unterstützte Sprachen 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"
            ]
        }
    ]
}