Tally counter

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

Tally counter là gì?

Tally counter là một tiện ích mở rộng Chrome được phát triển bởi capdavid, và tính năng chính của nó là "Easy & intuitive tally counter for keeping track of anything you want.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tally counter

Tải xuống các tệp mở rộng Tally counter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        - 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].                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tally counter Tally counter
ID innllipkgdpgnnhmbhjfminingfjmlgl
URL Chính Thức https://chromewebstore.google.com/detail/tally-counter/innllipkgdpgnnhmbhjfminingfjmlgl
Mô tả Easy & intuitive tally counter for keeping track of anything you want.
Kích Thước Tệp 2.52 MB
Số Lần Cài Đặt 10,000
Phiên Bản Hiện Tại 1.2.1
Cập Nhật Lần Cuối 2019-11-15
Ngày Phát Hành 2019-11-15
Đánh Giá 4.88/5 Tổng số 24 Đánh Giá
Nhà Phát Triển capdavid
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            }
        }
    }
}