Website Time Tracker

WebSite Time Tracker and Analysis

Website Time Tracker là gì?

Website Time Tracker là một tiện ích mở rộng Chrome được phát triển bởi Apoorva Paneliya, và tính năng chính của nó là "WebSite Time Tracker and Analysis".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Website Time Tracker

Tải xuống các tệp mở rộng Website Time Tracker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Website Time Tracker Website Time Tracker
ID mpnogdjfdofdddkndpffjbhojhhkhccb
URL Chính Thức https://chrome.google.com/webstore/detail/website-time-tracker/mpnogdjfdofdddkndpffjbhojhhkhccb
Mô tả WebSite Time Tracker and Analysis
Kích Thước Tệp 368 KB
Số Lần Cài Đặt 233
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2013-08-31
Ngày Phát Hành 2013-08-31
Đánh Giá 2.40/5 Tổng số 15 Đánh Giá
Nhà Phát Triển Apoorva Paneliya
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}