Trackr

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

Co je Trackr?

Trackr je rozšíření Chrome vyvinuté Srikar Gudipati, a jeho hlavní funkcí je „Track the time you spend on various websites with beautiful graphs on the new tab page!“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Trackr

Stáhněte si soubory rozšíření Trackr ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Trackr Trackr
ID pccehhnicffhgffhdfgainipddlopmie
Oficiální URL https://chrome.google.com/webstore/detail/trackr/pccehhnicffhgffhdfgainipddlopmie
Popis Track the time you spend on various websites with beautiful graphs on the new tab page!
Velikost souboru 205 KB
Počet instalací 5,000
Aktuální Verze 1.2
Poslední Aktualizace 2015-02-23
Datum Vydání 2015-02-23
Hodnocení 3.74/5 Celkem 43 Hodnocení
Vývojář Srikar Gudipati
Typ Platby free
Podporované Jazyky 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"
    ]
}