Redbooth Timer

This extension acts as a timer for your Redbooth (Teambox) tasks.

Was ist Redbooth Timer?

Redbooth Timer ist eine Chrome-Erweiterung, die von Jonathan Schroeder entwickelt wurde, und ihr Hauptmerkmal ist "This extension acts as a timer for your Redbooth (Teambox) tasks.".

Erweiterungsscreenshots

screenshot

Redbooth Timer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Redbooth Timer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Redbooth Timer Redbooth Timer
ID daiaammpoialambbheimipcieipblmcl
Offizielle URL https://chromewebstore.google.com/detail/redbooth-timer/daiaammpoialambbheimipcieipblmcl
Beschreibung This extension acts as a timer for your Redbooth (Teambox) tasks.
Dateigröße 98.25 KB
Installationsanzahl 379
Aktuelle Version 3.3
Letztes Update 2016-05-29
Veröffentlichungsdatum 2016-05-28
Bewertung 3.85/5 Insgesamt 20 Bewertungen
Entwickler Jonathan Schroeder
Zahlungsart free
Unterstützte Sprachen 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"
    }
}