Hourglass
CodebaseHQ time tracker and logger
O que é Hourglass?
Hourglass é uma extensão do Chrome desenvolvida por https://jsdojo.eu, e sua principal característica é "CodebaseHQ time tracker and logger".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Hourglass
Baixe arquivos de extensão Hourglass no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Hourglass |
ID | kphmjbjepakfdejkalbjdadaehfgfkco |
URL Oficial | https://chromewebstore.google.com/detail/hourglass/kphmjbjepakfdejkalbjdadaehfgfkco |
Descrição | CodebaseHQ time tracker and logger |
Tamanho do Arquivo | 78.02 KB |
Contagem de Instalações | 68 |
Versão Atual | 1.2 |
Última Atualização | 2018-03-24 |
Data de Publicação | 2018-03-24 |
Classificação | 4.33/5 Total de 6 Avaliações |
Desenvolvedor | https://jsdojo.eu |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |