Auto Radio Button Checker

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

Vad är Auto Radio Button Checker?

Auto Radio Button Checker är en Chrome-tillägg utvecklad av juhansae, och dess huvudfunktion är "takes a snapshot of a page you have checked to automatically checks the buttons you access that page.".

Tilläggsskärmbilder

screenshot

Ladda ner Auto Radio Button Checker-förlängningens CRX-fil

Ladda ner Auto Radio Button Checker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Auto Radio Button Checker Auto Radio Button Checker
ID phkflnpejpgehjgficbbikeclfcageic
Officiell webbadress https://chromewebstore.google.com/detail/auto-radio-button-checker/phkflnpejpgehjgficbbikeclfcageic
Beskrivning takes a snapshot of a page you have checked to automatically checks the buttons you access that page.
Filstorlek 44.41 KB
Antal Installationer 527
Aktuell Version 0.11
Senast Uppdaterad 2020-09-23
Publiceringsdatum 2020-09-23
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare juhansae
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/Verssae/AutoRadioChecker
Stödda Språk 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"
            ]
        }
    ]
}