Button Counter

Increments number based on the button click

Button Counter란 무엇입니까?

Button Counter은(는) Katsuya Hyodo & Haesung Hwang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Increments number based on the button click"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Button Counter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Increase your productivity by automatically counting the same click event.

Tired of manually counting or pressing a specific key to know how many times you have clicked that button in your work? Look no further, Button Counter does all the counting!

[ Features ]
- Automatically counts your click events, no need to press any key to increment the tally
- Save the tally count until you reset
- Customizable to respond to a specific button

[ How to use ]
- Click the button in the web page! That's all you need to do! You can see the number of clicks on the chrome extension icon. If the number is too small, you can click on the extension icon to see the larger font. 
- Reset the number to zero when necessary. The tally maintains the number even if you restart the browser. 

[ How to customize ] 
- If you want to tally for something more specific, you can set it up by following the below steps
  1. Right click on your target element (e.g. button, link etc.) and select "Inspect"
  2. Check your target element HTML Tag name, id, class
  3. Input any CSS Selector for the target element in the "Target Selector" on Button Counter. (Default value: "button, a")

[ Example of customization ]
- Detect clicks of a specific HTML Tag
   - "a"
- Detect clicks of a specific class element
   - ".className"
- Detect clicks of a specific id element
  - "#idName"
- Detect clicks of a specific HTML Tag that has specific class ("a" AND ".className")
  - "a.className"
- Detect clicks of multiple conditions ("a" OR ".className")
  - "a, .className"                    

확장 프로그램 기본 정보

이름 Button Counter Button Counter
ID pkjcdhfckpbgnoclefkjfmafpakdgcaj
공식 URL https://chromewebstore.google.com/detail/button-counter/pkjcdhfckpbgnoclefkjfmafpakdgcaj
설명 Increments number based on the button click
파일 크기 120 KB
설치 횟수 2,731
현재 버전 1.0.2
최근 업데이트 2020-03-15
출시 날짜 2020-03-13
평점 3.86/5 총 7 개의 평점
개발자 Katsuya Hyodo & Haesung Hwang
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Button Counter",
    "short_name": "Button",
    "version": "1.0.2",
    "manifest_version": 2,
    "description": "Increments number based on the button click",
    "icons": {
        "128": "button.png"
    },
    "browser_action": {
        "default_title": "Button Counter",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        ""
    ]
}