Website Time Tracker

WebSite Time Tracker and Analysis

什麼是Website Time Tracker?

Website Time Tracker是由Apoorva Paneliya開發的Chrome擴展程式,該擴展的主要功能是“WebSite Time Tracker and Analysis”。

擴展截圖

screenshot
screenshot
screenshot

下載Website Time Tracker擴展crx文件

下載Website Time Tracker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Website time tracker is extremely simple extension which keeps track of website visit and time spent on that particular website.

How the extension tracks the time ?

Its start the timer whenever particular tab has focus and its stops whenever that tab lost the focus. 

One of the advantage of this simple approach, extension able to track proper time for reading and  videos related website like readdit.com, youtube.com, vimeo.com in full screen exclusive and passive mode.

In short, It tracks the time if webpage is visible to user partially or completely even if another window is active. 

In rest cases like (user switches to a different tab or minimizes the browser window), it stops the timer.

How to view time related statics ?

On clicking extension icon, dedicated webpage will be open in new tab.

What type of statics available?

Currently, you are able to visualize  daily, weekly and monthly statics with the help of bar, pie and polar chart.

Feel free to request any other type of chart or statics.                    

擴展基本資訊

名稱 Website Time Tracker Website Time Tracker
ID mpnogdjfdofdddkndpffjbhojhhkhccb
官方網址 https://chrome.google.com/webstore/detail/website-time-tracker/mpnogdjfdofdddkndpffjbhojhhkhccb
簡介 WebSite Time Tracker and Analysis
檔案大小 368 KB
安裝次數 233
目前版本 1.2
更新時間 2013-08-31
上架時間 2013-08-31
評分 2.40/5 共 15 次評分
開發者 Apoorva Paneliya
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Website Time Tracker",
    "version": "1.2",
    "manifest_version": 2,
    "description": "WebSite Time Tracker and Analysis",
    "browser_action": {
        "default_icon": "icon.png",
        "icons": [
            "icon.png"
        ]
    },
    "icons": {
        "16": "icon 16x16.png",
        "48": "icon 48x48.png",
        "128": "icon 128x128.png"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "moment.min.js",
                "timeTracker.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "storage",
        "unlimitedStorage"
    ],
    "web_accessible_resources": [
        "Chart.min.js"
    ]
}