Time Tracker

Keeps track of how much time you spend on various web sites.

Cos'è Time Tracker?

Time Tracker è un'estensione di Chrome sviluppata da [email protected], e la sua funzione principale è "Keeps track of how much time you spend on various web sites.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Time Tracker

Scarica i file di estensione Time Tracker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Helps users track how much time they spend on various web sites.

Please email feature requests to: [email protected] or file issues on the project page: https://github.com/navjagpal/browser-timetracker/issues

This project is open source.                    

Informazioni di Base sull'Estensione

Nome Time Tracker Time Tracker
ID mokmnbikneoaenmckfmgjgjimphfojkd
URL Ufficiale https://chromewebstore.google.com/detail/time-tracker/mokmnbikneoaenmckfmgjgjimphfojkd
Descrizione Keeps track of how much time you spend on various web sites.
Dimensione del File 76.76 KB
Conteggio Installazioni 15,086
Versione Corrente 1.2.4
Ultimo Aggiornamento 2016-10-29
Data di Pubblicazione 2016-10-29
Valutazione 4.24/5 Totale 132 Valutazioni
Sviluppatore [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/navjagpal/browser-timetracker/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Time Tracker",
    "version": "1.2.4",
    "description": "Keeps track of how much time you spend on various web sites.",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "config.js",
            "sites.js",
            "tracker.js",
            "background.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "alarms",
        "idle",
        "tabs"
    ],
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_title": "Time Tracker",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "icons": {
        "19": "images\/icon19.png",
        "38": "images\/icon38.png",
        "128": "images\/icon.png"
    }
}