GitHub Time Tracking

Add time tracking to the GitHub Issue Tracker with Harvest.

Τι είναι το GitHub Time Tracking;

Το GitHub Time Tracking είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Klokan Technologies, και η κύρια λειτουργία του είναι "Add time tracking to the GitHub Issue Tracker with Harvest.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης GitHub Time Tracking

Λήψη αρχείων επέκτασης GitHub Time Tracking σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        An one-click time tracking functionality integrated with all Issues or Pull requests in the GitHub system.

Usage:
- Register the free account at Harvest system: 

http://try.hrv.st/66lx

- Then install this plugin. A new button appears next to the #ticket number
- With one click you can start to track the time. The dialog also shows the sum of time already spent by you on this ticket.
- Harvest provides great project reports - with links back to the GitHub tickets.
- It is also possible to directly create nice looking invoices.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα GitHub Time Tracking GitHub Time Tracking
ID fgkmkpoadhhloghmnnbodkoikmffafoe
Επίσημο URL https://chrome.google.com/webstore/detail/github-time-tracking/fgkmkpoadhhloghmnnbodkoikmffafoe
Περιγραφή Add time tracking to the GitHub Issue Tracker with Harvest.
Μέγεθος Αρχείου 167 KB
Αριθμός Εγκαταστάσεων 216
Τρέχουσα Έκδοση 0.7.1
Τελευταία Ενημέρωση 2014-06-17
Ημερομηνία Δημοσίευσης 2014-06-17
Αξιολόγηση 3.60/5 Συνολικά 10 Αξιολογήσεις
Προγραμματιστής Klokan Technologies
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://try.hrv.st/66lx
Διεύθυνση URL της Σελίδας Βοήθειας http://try.hrv.st/66lx
URL της Σελίδας Πολιτικής Απορρήτου https://www.oldmapsonline.org/privacy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Time Tracking",
    "version": "0.7.1",
    "manifest_version": 2,
    "description": "Add time tracking to the GitHub Issue Tracker with Harvest.",
    "icons": {
        "128": "img\/github-time-tracking-128.png",
        "48": "img\/github-time-tracking-48.png",
        "16": "img\/github-time-tracker-16.png"
    },
    "background": {
        "scripts": [
            "lib\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "js": [
                "data\/index.js"
            ],
            "matches": [
                "https:\/\/github.com\/*\/issues\/*",
                "https:\/\/github.com\/*\/pull\/*"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/*.harvestapp.com; object-src 'self'",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "https:\/\/github.com\/*",
        "https:\/\/*.harvestapp.com\/*",
        "tabs"
    ]
}