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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}