Web Timer

Keep track of how you spend your time on the web.

Web Timer là gì?

Web Timer là một tiện ích mở rộng Chrome được phát triển bởi DK, và tính năng chính của nó là "Keep track of how you spend your time on the web.".

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

screenshot

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

Tải xuống các tệp mở rộng Web Timer 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

                        Web Timer is a simple and intuitive extension that lets you keep track of how you're spending your time on the web.

Web Timer keeps track of the tab that you are actively using and updates its stats every 3 seconds. 

Features:
- Helps you visualize the time you're spending by displaying the data in a pie chart
- Keeps track of stats for today, daily average, and all-time
- Stops counting if your machine is idle for more than 30 seconds
- Only counts time when Chrome has focus
- Shows the number of minutes spent on current website over the icon
- Easily share your Web Timer stats with friends

Instructions:
- Use the options page to avoid tracking certain sites

Note: I originally sold the extension (https://chrome.google.com/webstore/detail/web-timer/ggnjbdfgigejghknieofeahaknkjafim?hl=en) but it seems that the buyer is injecting redirects and other suspicious behavior so I'm uploading a clean copy. The source code for this extension is at https://github.com/dskang/webtimer                    

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

Tên Web Timer Web Timer
ID efkkjffdefaaioagghcaflicdajfhceo
URL Chính Thức https://chromewebstore.google.com/detail/web-timer/efkkjffdefaaioagghcaflicdajfhceo
Mô tả Keep track of how you spend your time on the web.
Kích Thước Tệp 24.12 KB
Số Lần Cài Đặt 8,199
Phiên Bản Hiện Tại 1.4.9
Cập Nhật Lần Cuối 2020-08-07
Ngày Phát Hành 2017-07-25
Đánh Giá 4.36/5 Tổng số 36 Đánh Giá
Nhà Phát Triển DK
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",
    "manifest_version": 2,
    "name": "Web Timer",
    "version": "1.4.9",
    "description": "Keep track of how you spend your time on the web.",
    "icons": {
        "128": "icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "idle",
        "tabs"
    ],
    "browser_action": {
        "default_title": "Web Timer",
        "default_icon": "icon_19.png",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.gstatic.com; object-src 'self'"
}