TabGraph
Track and graph how many tabs you have open.
什么是TabGraph?
TabGraph是由psc开发的Chrome扩展程序,该扩展的主要功能是“Track and graph how many tabs you have open.”。
扩展截图
下载TabGraph扩展crx文件
下载TabGraph扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Track and graph how many tabs you have open in Chrome.
Extension icon shows a counter of how many tabs are open. The background color adjusts to let you know if you're near your max.
Clicking on the icon opens up a graph that shows your tab open and close history.
Source code: https://github.com/paulcretu/TabGraph
Changelog:
1.0.1
- Clicking on icon now closes the popup if it's open
1.0.0
- Initial release 扩展基本信息
| 名称 | |
| ID | iccoccncfjfmlkdigkefipjfndkmagng |
| 官方URL | https://chrome.google.com/webstore/detail/tabgraph/iccoccncfjfmlkdigkefipjfndkmagng |
| 简介 | Track and graph how many tabs you have open. |
| 文件大小 | 324 KB |
| 安装次数 | 117 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2014-03-12 |
| 上架时间 | 2014-03-12 |
| 评分 | 5.00/5 共6次评分 |
| 开发者 | psc |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "TabGraph",
"version": "1.0.1",
"description": "Track and graph how many tabs you have open.",
"browser_action": {
"default_icon": "images\/icon19.png",
"default_popup": "popup.html"
},
"icons": {
"16": "images\/icon16.png",
"128": "images\/icon128.png"
},
"background": {
"page": "background.html"
},
"permissions": [
"tabs"
]
} | |