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                     扩展基本信息
| 名称 |   |  
| 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"
            ]
        }
    ]
}  |  |