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ファイルをダウンロード
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]. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
}
}
} | |