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.」です。

拡張機能のスクリーンショット

screenshot

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 Redbooth Timer
ID daiaammpoialambbheimipcieipblmcl
公式URL 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"
    }
}