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은(는) juhansae에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "takes a snapshot of a page you have checked to automatically checks the buttons you access that page."입니다.

확장 프로그램 스크린샷

screenshot

Auto Radio Button Checker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}