Day Counter
Displays the number of days since a given date in the toolbar. Right click icon->Options to change date.
Day Counterとは何ですか?
Day CounterはJoshによって開発されたChromeの拡張機能で、その主な機能は「Displays the number of days since a given date in the toolbar. Right click icon->Options to change date.」です。
拡張機能のスクリーンショット
Day Counter拡張機能のCRXファイルをダウンロード
Day Counter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
It shows the number of days since a specified date in the toolbar. It is kind of like a timer/stopwatch but just for the days between dates. Good for when you're trying to break a habit, and you want to see how many days you have gone (ie. looking at facebook while working). This also syncs between browsers, you know what I mean. Like you can be in one browser, and then get on another computer and login to chrome, and the date will sync, so you don't have to keep it updated. Like it saves it on the internet, so it can be accessed anywhere, you know? Like it's something that helps you manage stuff between computers and stuff, get it?
拡張機能の基本情報
名前 | Day Counter |
ID | glnbjmdjpcccpdlckpenknmacmgbecpa |
公式URL | https://chromewebstore.google.com/detail/day-counter/glnbjmdjpcccpdlckpenknmacmgbecpa |
説明 | Displays the number of days since a given date in the toolbar. Right click icon->Options to change date. |
ファイルサイズ | 21.39 KB |
インストール数 | 3,258 |
現在のバージョン | 1.0.1 |
最終更新日 | 2013-05-21 |
公開日 | 2013-05-21 |
評価 | 4.35/5 合計 54 レビュー |
開発者 | Josh |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "page": "background.html" }, "content_scripts": [ { "js": [ "script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "description": "Displays the number of days since a given date in the toolbar. Right click icon->Options to change date.", "icons": { "128": "icon128.png", "16": "icon16.png", "48": "icon48.png" }, "browser_action": { "default_icon": "icon16.png" }, "permissions": [ "storage" ], "options_page": "options.html", "incognito": "split", "manifest_version": 2, "name": "Day Counter", "version": "1.0.1" } |