Trackr

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

Vad är Trackr?

Trackr är en Chrome-tillägg utvecklad av Srikar Gudipati, och dess huvudfunktion är "Track the time you spend on various websites with beautiful graphs on the new tab page!".

Tilläggsskärmbilder

screenshot

Ladda ner Trackr-förlängningens CRX-fil

Ladda ner Trackr-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Trackr Trackr
ID pccehhnicffhgffhdfgainipddlopmie
Officiell webbadress https://chrome.google.com/webstore/detail/trackr/pccehhnicffhgffhdfgainipddlopmie
Beskrivning Track the time you spend on various websites with beautiful graphs on the new tab page!
Filstorlek 205 KB
Antal Installationer 5,000
Aktuell Version 1.2
Senast Uppdaterad 2015-02-23
Publiceringsdatum 2015-02-23
Betyg 3.74/5 Totalt 43 Betyg
Utvecklare Srikar Gudipati
Betalningssätt free
Stödda Språk 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"
    ]
}