Redbooth Timer
This extension acts as a timer for your Redbooth (Teambox) tasks.
什麼是Redbooth Timer?
Redbooth Timer是由Jonathan Schroeder開發的Chrome擴展程式,該擴展的主要功能是“This extension acts as a timer for your Redbooth (Teambox) tasks.”。
擴展截圖
下載Redbooth Timer擴展crx文件
下載Redbooth Timer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Redbooth Timer |
ID | daiaammpoialambbheimipcieipblmcl |
官方網址 | https://chromewebstore.google.com/detail/redbooth-timer/daiaammpoialambbheimipcieipblmcl |
簡介 | This extension acts as a timer for your Redbooth (Teambox) tasks. |
檔案大小 | 98.25 KB |
安裝次數 | 379 |
目前版本 | 3.3 |
更新時間 | 2016-05-29 |
上架時間 | 2016-05-28 |
評分 | 3.85/5 共 20 次評分 |
開發者 | Jonathan Schroeder |
付費類型 | free |
支援的語言 | 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" } } |