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 |
官方網址 | 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" ] } ] } |