TabStats
An extension that track amount of time you spent on a website each day.
什么是TabStats?
TabStats是由pallab.gain开发的Chrome扩展程序,该扩展的主要功能是“An extension that track amount of time you spent on a website each day.”。
扩展截图
下载TabStats扩展crx文件
下载TabStats扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A chrome extension that track amount of time you spent on a website everyday.
- Bugfix
- Window focus related issue 扩展基本信息
| 名称 | |
| ID | milpdpjbadncalidnmimelocmkmnmacj |
| 官方URL | https://chromewebstore.google.com/detail/tabstats/milpdpjbadncalidnmimelocmkmnmacj |
| 简介 | An extension that track amount of time you spent on a website each day. |
| 文件大小 | 2.06 MB |
| 安装次数 | 35 |
| 当前版本 | 1.2.5 |
| 更新时间 | 2020-02-22 |
| 上架时间 | 2020-02-22 |
| 开发者 | pallab.gain |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/pallab-gain/TabStats |
| 帮助页面URL | https://github.com/pallab-gain/TabStats/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "TabStats",
"version": "1.2.5",
"description": "An extension that track amount of time you spent on a website each day.",
"manifest_version": 2,
"browser_action": {
"default_popup": "popup.html"
},
"icons": {
"16": "images\/icon16.png",
"24": "images\/icon24.png",
"32": "images\/icon32.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"web_accessible_resources": [
"cdn"
],
"permissions": [
"tabs"
]
} | |