Trackr

Track the time you spend on various websites with beautiful graphs on the new tab page!

Hvad er Trackr?

Trackr er en Chrome-udvidelse udviklet af Srikar Gudipati, og dens hovedfunktion er "Track the time you spend on various websites with beautiful graphs on the new tab page!".

Udvidelsesskærmbilleder

screenshot

Download Trackr-udvidelses-CRX-fil

Download Trackr-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        This is a Chrome extension that lets you track the time you spend on various websites with beautiful graphs on the new tab page!                    

Grundlæggende oplysninger om udvidelsen

Navn Trackr Trackr
ID pccehhnicffhgffhdfgainipddlopmie
Officiel URL https://chrome.google.com/webstore/detail/trackr/pccehhnicffhgffhdfgainipddlopmie
Beskrivelse Track the time you spend on various websites with beautiful graphs on the new tab page!
Filstørrelse 205 KB
Antal Installationer 5,000
Nuværende Version 1.2
Senest Opdateret 2015-02-23
Udgivelsesdato 2015-02-23
Bedømmelse 3.74/5 Samlet 43 Bedømmelser
Udvikler Srikar Gudipati
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trackr",
    "version": "1.2",
    "manifest_version": 2,
    "description": "Track the time you spend on various websites with beautiful graphs on the new tab page!",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": false
    },
    "background": {
        "scripts": [
            "js\/jquery\/jquery.min.js",
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "chrome_url_overrides": {
        "newtab": "src\/override\/override.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery\/jquery.min.js",
                "src\/contentscript\/contentscript.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "history",
        "tabs",
        "*:\/\/*\/*",
        "storage",
        "unlimitedStorage"
    ]
}