Hourglass
CodebaseHQ time tracker and logger
Hourglassとは何ですか?
Hourglassはhttps://jsdojo.euによって開発されたChromeの拡張機能で、その主な機能は「CodebaseHQ time tracker and logger」です。
拡張機能のスクリーンショット
Hourglass拡張機能のCRXファイルをダウンロード
Hourglass拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Extension for CodebaseHQ projects [v1.2] - updated time keeping logic - rendering performance improvements - UI improvements - added button titles [v1.1] - added logic to automatically close duplicate task tabs - added timer reset button [v1.0] - keep track of your work without worrying about losing time - time is tracked even if task tab is closed - no time loss if you refresh the browser - prevents working on multiple tasks at the same time - shows which task is in progress if you're on a different task screen - timer can be paused - once a task is done, hit the stop button and your time will be logged
拡張機能の基本情報
名前 | Hourglass |
ID | kphmjbjepakfdejkalbjdadaehfgfkco |
公式URL | https://chromewebstore.google.com/detail/hourglass/kphmjbjepakfdejkalbjdadaehfgfkco |
説明 | CodebaseHQ time tracker and logger |
ファイルサイズ | 78.02 KB |
インストール数 | 68 |
現在のバージョン | 1.2 |
最終更新日 | 2018-03-24 |
公開日 | 2018-03-24 |
評価 | 4.33/5 合計 6 レビュー |
開発者 | https://jsdojo.eu |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hourglass", "description": "CodebaseHQ time tracker and logger", "version": "1.2", "manifest_version": 2, "browser_action": { "default_icon": "icons\/logo_32.png" }, "icons": { "32": "icons\/logo_32.png", "128": "icons\/logo_128.png", "256": "icons\/logo_256.png", "512": "icons\/logo_512.png" }, "permissions": [ "storage", "tabs", "https:\/\/*.codebasehq.com\/*\/tickets\/*" ], "author": "Radu B. Gaspar", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.codebasehq.com\/*\/tickets\/*" ], "css": [ "hourglass.css" ], "js": [ "content.js" ] } ] } |