Button Counter

Increments number based on the button click

Button Counter क्या है?

Button Counter Katsuya Hyodo & Haesung Hwang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Increments number based on the button click"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Button Counter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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",
        ""
    ]
}