Web Timer
Keep track of how you spend your time on the web.
什么是Web Timer?
Web Timer是由DK开发的Chrome扩展程序,该扩展的主要功能是“Keep track of how you spend your time on the web.”。
扩展截图
下载Web Timer扩展crx文件
下载Web Timer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Web Timer |
ID | efkkjffdefaaioagghcaflicdajfhceo |
官方URL | https://chromewebstore.google.com/detail/web-timer/efkkjffdefaaioagghcaflicdajfhceo |
简介 | Keep track of how you spend your time on the web. |
文件大小 | 24.12 KB |
安装次数 | 8,199 |
当前版本 | 1.4.9 |
更新时间 | 2020-08-07 |
上架时间 | 2017-07-25 |
评分 | 4.36/5 共36次评分 |
开发者 | DK |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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'" } |