Simple Counter Button

Adds a counter controlled by a button to your Chrome Toolbar

Simple Counter Buttonคืออะไร?

Simple Counter Button เป็นส่วนขยายของ Chrome ที่พัฒนาโดย micpob และคุณลักษณะหลักของมันคือ "Adds a counter controlled by a button to your Chrome Toolbar"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Simple Counter Button

ดาวน์โหลดไฟล์ส่วนขยาย Simple Counter Button ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        If you need a simple counter that can be incremented by clicking a button, this extension is for you.

The counter can be set to increment by any value, positive or negative. The default step is +1 for each click.
Right-click to quickly make a -1 step or to reset the counter.

Additional functionalities (to be activated in the options page):
🔔 Notifications: you can set a limit and you will receive a notification when the counter reaches that number.
🔊 Sound: enable the sound option to hear a sound every time you press the button.
📅 Chronology: see a list with the date and time of the last 100 clicks.

Right-click on the button and select "Options" to access the options page.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Simple Counter Button Simple Counter Button
ID ganimlbiphepcnkneheoamhohhmjpohp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/simple-counter-button/ganimlbiphepcnkneheoamhohhmjpohp
คำอธิบาย Adds a counter controlled by a button to your Chrome Toolbar
ขนาดไฟล์ 25.47 KB
จำนวนการติดตั้ง 26,341
เวอร์ชันปัจจุบัน 2.8
อัปเดตครั้งล่าสุด 2023-12-15
วันที่เผยแพร่ 2020-06-02
คะแนน 4.41/5 รวมทั้งหมด 32 คะแนน
ผู้พัฒนา micpob
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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": "SmplBtnCount",
    "version": "2.8",
    "description": "__MSG_extension_description__",
    "manifest_version": 2,
    "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": {
        "scripts": [
            "contextMenu.js",
            "notifications.js",
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "optional_permissions": [
        "notifications"
    ],
    "options_page": "options.html",
    "browser_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"
        }
    }
}