Button Counter G

Increments number based on the button click

Qu'est-ce que Button Counter G ?

Button Counter G est une extension Chrome développée par akovalyov, et sa fonction principale est "Increments number based on the button click".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Button Counter G

Téléchargez les fichiers d'extension Button Counter G au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        ----------------------------------------------------------------------------------------
* Edited on Feb 19, 2021
Original author/publisher: Haesung Hwang
The ownership of this extension Button Counter G was transferred due to the change in original author's project assignment
*Edited on Dec 30, 2021
Original author/publisher: Haesung Hwang
The ownership of this extension Button Counter G was transferred another time due to the second owner's leave from company.
----------------------------------------------------------------------------------------

Increments number based on the button click
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"


----------------------------------------------------------------------------------------
* Edited on Feb 19, 2021
Original author/publisher: Haesung Hwang
The ownership of this extension Button Counter G was transferred due to the change in original author's project assignment
*Edited on Dec 30, 2021
Original author/publisher: Haesung Hwang
The ownership of this extension Button Counter G was transferred another time due to the second owner's leave from company.
----------------------------------------------------------------------------------------                    

Informations de Base sur l'Extension

Nom Button Counter G Button Counter G
ID lfgnadfkaiepombekpbccllpbkiealal
URL Officiel https://chromewebstore.google.com/detail/button-counter-g/lfgnadfkaiepombekpbccllpbkiealal
Description Increments number based on the button click
Taille du Fichier 39.39 KB
Nombre d'Installations 1,785
Version Actuelle 1.0.0
Dernière Mise à Jour 2022-01-01
Date de Publication 2020-06-18
Évaluation 3.89/5 Total 9 Évaluations
Développeur akovalyov
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Button Counter G",
    "short_name": "BCG",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "Increments number based on the button click",
    "icons": {
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_title": "Button Counter G",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        ""
    ]
}