Redbooth Timer
This extension acts as a timer for your Redbooth (Teambox) tasks.
O que é Redbooth Timer?
Redbooth Timer é uma extensão do Chrome desenvolvida por Jonathan Schroeder, e sua principal característica é "This extension acts as a timer for your Redbooth (Teambox) tasks.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Redbooth Timer
Baixe arquivos de extensão Redbooth Timer 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
This a closed, private solution and cannot be contributed to without written or other consent from the author. I'm not opposed to additions or tweaks but they must be reviewed and approved by me. My codebase is not available re-use without written consent by me. What it is, what it does: Start and stop time against any task in Redbooth. This timer control adds start and stop buttons to each task allowing you to easily log time against each task as you work on it. This extension attaches start and stop buttons directly within the Redbooth UI.
Informações Básicas da Extensão
Nome | Redbooth Timer |
ID | daiaammpoialambbheimipcieipblmcl |
URL Oficial | https://chromewebstore.google.com/detail/redbooth-timer/daiaammpoialambbheimipcieipblmcl |
Descrição | This extension acts as a timer for your Redbooth (Teambox) tasks. |
Tamanho do Arquivo | 98.25 KB |
Contagem de Instalações | 379 |
Versão Atual | 3.3 |
Última Atualização | 2016-05-29 |
Data de Publicação | 2016-05-28 |
Classificação | 3.85/5 Total de 20 Avaliações |
Desenvolvedor | Jonathan Schroeder |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Redbooth Timer", "description": "This extension acts as a timer for your Redbooth (Teambox) tasks.", "icons": { "16": "redbooth-timer16.png", "48": "redbooth-timer48.png", "128": "redbooth-timer.png" }, "version": "3.3", "web_accessible_resources": [ "jquery2.js" ], "content_scripts": [ { "matches": [ "https:\/\/redbooth.com\/*" ], "css": [ "teamboxTimer.css" ], "js": [ "jquery2.js", "script_jso.js" ] } ], "permissions": [ "https:\/\/redbooth.com\/" ], "browser_action": { "default_icon": "redbooth-timer16.png", "default_popup": "popup.html" } } |