Tally counter

Easy & intuitive tally counter for keeping track of anything you want.

Tally counterคืออะไร?

Tally counter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย capdavid และคุณลักษณะหลักของมันคือ "Easy & intuitive tally counter for keeping track of anything you want."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tally counter

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

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

                        - lightweight
- syncs between all your devices
- super easy to use
- ability to export data to .csv
- toggle dark mode
- keyboard shortcuts so you don't have to click :-)

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

If you want any features added, you find a bug or something is behaving unexpectedly, please contact me at [email protected].                    

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

ชื่อ Tally counter Tally counter
ID innllipkgdpgnnhmbhjfminingfjmlgl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tally-counter/innllipkgdpgnnhmbhjfminingfjmlgl
คำอธิบาย Easy & intuitive tally counter for keeping track of anything you want.
ขนาดไฟล์ 2.52 MB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 1.2.1
อัปเดตครั้งล่าสุด 2019-11-15
วันที่เผยแพร่ 2019-11-15
คะแนน 4.88/5 รวมทั้งหมด 24 คะแนน
ผู้พัฒนา capdavid
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tally counter",
    "version": "1.2.1",
    "description": "Easy & intuitive tally counter for keeping track of anything you want.",
    "manifest_version": 2,
    "permissions": [
        "declarativeContent",
        "notifications",
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'sha256-5As4+3YpY62+l38PsxCEkjB1R4YtyktBtRScTJ3fyLU='; object-src 'self'",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon48.png"
        },
        "default_popup": "index.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon48.png"
    },
    "commands": {
        "0inc": {
            "suggested_key": {
                "default": "Alt+1",
                "mac": "MacCtrl+1"
            },
            "description": "First item +1"
        },
        "1inc": {
            "description": "Second item +1"
        },
        "2inc": {
            "description": "Third item +1"
        },
        "3inc": {
            "description": "Fourth item +1"
        },
        "4inc": {
            "description": "Fifth item +1"
        },
        "0zdec": {
            "suggested_key": {
                "default": "Alt+Shift+1",
                "mac": "MacCtrl+Shift+1"
            },
            "description": "First item -1"
        },
        "1zdec": {
            "description": "Second item -1"
        },
        "2zdec": {
            "description": "Third item -1"
        },
        "3zdec": {
            "description": "Fourth item -1"
        },
        "4zdec": {
            "description": "Fifth item -1"
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+T",
                "mac": "MacCtrl+T"
            }
        }
    }
}