PlusOne Counter Button

PlusOne Counter Button: Keep track everything you need only with a click of a Button

PlusOne Counter Button क्या है?

PlusOne Counter Button https://limbuscode.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "PlusOne Counter Button: Keep track everything you need only with a click of a Button"।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में PlusOne Counter Button एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Adds a counter controlled by a button to your Toolbar

If you want to keep track everything you need with a counter that can be incremented by clicking a button, this extension is the right tool for you.

- The default step is 1.
- You'll be able to setup the step by any value, positive or negative;
- Reset the counter or do a -1 (or a negative step) by doing Right click on the button;
- Hover the mouse cursor on the button to view the last click timestamp;
- You can also use keyboard shortcuts to trigger all of the main functions (+1, -1 and reset):

Default hotkeys are:
+1: ctrl+shift+Y
-1 : ctrl+shift+H
reset: ctrl+shift+L

To customize keyboard shortcuts, copy this link into the address bar: chrome://extensions/shortcuts

Right click on the button and select "Options" to access the options page to access additional features:
- Sound: activate the sound option to hear a sound every time you click on the button;
- Notifications: you can set a limit and you will receive a notification when the counter reaches that number.                    

एक्सटेंशन की मूल जानकारी

नाम PlusOne Counter Button PlusOne Counter Button
ID ncoebbpimpepemnhccomokfhopddbfap
आधिकारिक URL https://chromewebstore.google.com/detail/plusone-counter-button/ncoebbpimpepemnhccomokfhopddbfap
विवरण PlusOne Counter Button: Keep track everything you need only with a click of a Button
फ़ाइल का आकार 34.85 KB
स्थापना संख्या 63
वर्तमान संस्करण 0.1
अंतिम अपडेट 2024-01-06
प्रकाशन तिथि 2022-04-22
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर https://limbuscode.com
ईमेल [email protected]
भुगतान के प्रकार in_app
सहायता पृष्ठ URL https://docs.google.com/forms/d/e/1FAIpQLSd_7IU5Rie2lqsxNA7TunGaSlgbmZOcORmtzrtR5fsiju07JQ/viewform?usp=pp_url&entry.937029896=PlusOne+Counter+Button
समर्थित भाषाएँ en,fr,es,it,pt-BR,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extension_name__",
    "short_name": "PlusOneBtnCount",
    "version": "0.1",
    "description": "__MSG_extension_description__",
    "manifest_version": 3,
    "default_locale": "en",
    "icons": {
        "16": "Res\/Icons\/icon16.png",
        "24": "Res\/Icons\/icon24.png",
        "32": "Res\/Icons\/icon32.png",
        "48": "Res\/Icons\/icon48.png",
        "64": "Res\/Icons\/icon64.png",
        "128": "Res\/Icons\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "add": {
            "suggested_key": "Ctrl+Shift+Y",
            "description": "Add step to total"
        },
        "subtract": {
            "suggested_key": "Ctrl+Shift+H",
            "description": "Subtract step to total"
        },
        "reset-counter": {
            "suggested_key": "Ctrl+Shift+L",
            "description": "Reset counter to 0"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/extensionpay.com\/*"
            ],
            "js": [
                "ExtPay.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "optional_permissions": [
        "notifications"
    ],
    "options_page": "options.html",
    "action": {
        "default_icon": {
            "16": "Res\/Icons\/icon16.png",
            "24": "Res\/Icons\/icon24.png",
            "32": "Res\/Icons\/icon32.png",
            "48": "Res\/Icons\/icon48.png",
            "64": "Res\/Icons\/icon64.png",
            "128": "Res\/Icons\/icon128.png"
        }
    }
}