Trackr

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

什么是Trackr?

Trackr是由Srikar Gudipati开发的Chrome扩展程序,该扩展的主要功能是“Track the time you spend on various websites with beautiful graphs on the new tab page!”。

扩展截图

screenshot

下载Trackr扩展crx文件

下载Trackr扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Trackr Trackr
ID pccehhnicffhgffhdfgainipddlopmie
官方URL https://chrome.google.com/webstore/detail/trackr/pccehhnicffhgffhdfgainipddlopmie
简介 Track the time you spend on various websites with beautiful graphs on the new tab page!
文件大小 205 KB
安装次数 5,000
当前版本 1.2
更新时间 2015-02-23
上架时间 2015-02-23
评分 3.74/5 共43次评分
开发者 Srikar Gudipati
付费类型 free
支持的语言 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"
    ]
}