Tally counter
Easy & intuitive tally counter for keeping track of anything you want.
Tally counter란 무엇입니까?
Tally counter은(는) capdavid에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easy & intuitive tally counter for keeping track of anything you want."입니다.
확장 프로그램 스크린샷
Tally counter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
- 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 |
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" } } } } |