Redbooth Timer

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

Qu'est-ce que Redbooth Timer ?

Redbooth Timer est une extension Chrome développée par Jonathan Schroeder, et sa fonction principale est "This extension acts as a timer for your Redbooth (Teambox) tasks.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Redbooth Timer

Téléchargez les fichiers d'extension Redbooth Timer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Redbooth Timer Redbooth Timer
ID daiaammpoialambbheimipcieipblmcl
URL Officiel https://chromewebstore.google.com/detail/redbooth-timer/daiaammpoialambbheimipcieipblmcl
Description This extension acts as a timer for your Redbooth (Teambox) tasks.
Taille du Fichier 98.25 KB
Nombre d'Installations 379
Version Actuelle 3.3
Dernière Mise à Jour 2016-05-29
Date de Publication 2016-05-28
Évaluation 3.85/5 Total 20 Évaluations
Développeur Jonathan Schroeder
Type de Paiement free
Langues Prises en Charge 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"
    }
}