Button Counter Overlay

Increments number based on the button click

Button Counter Overlayとは何ですか?

Button Counter OverlayはKatsuya Hyodo & Haesung Hwangによって開発されたChromeの拡張機能で、その主な機能は「Increments number based on the button click」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Button Counter Overlay拡張機能のCRXファイルをダウンロード

Button Counter Overlay拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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 Overlay does all the counting!

A sister extension of "Button Counter". "Button Counter Overlay" functions the same way as Button Counter does, but it does all the work inside the web page. In addition, you can minimize the view to only see the tally. 

[ 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: "a, button, span")

[ 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 Overlay Button Counter Overlay
ID olaplecolmlndfikddnidechaeeehlhk
公式URL https://chrome.google.com/webstore/detail/button-counter-overlay/olaplecolmlndfikddnidechaeeehlhk
説明 Increments number based on the button click
ファイルサイズ 37.97 KB
インストール数 107
現在のバージョン 1.0.0
最終更新日 2020-05-22
公開日 2020-05-22
評価 5.00/5 合計 1 レビュー
開発者 Katsuya Hyodo & Haesung Hwang
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Button Counter Overlay",
    "short_name": "Button",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "Increments number based on the button click",
    "icons": {
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        ""
    ]
}