Tabs count
Counts the number of open browser tabs
什么是Tabs count?
Tabs count是由Kanban Labs开发的Chrome扩展程序,该扩展的主要功能是“Counts the number of open browser tabs”。
扩展截图
下载Tabs count扩展crx文件
下载Tabs count扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A very simple extension that gives you the number of currently opened tabs and windows.
Check the source code yourself! https://github.com/kanban-labs/tabs-count 扩展基本信息
| 名称 | |
| ID | iaejhlgcnijhbdilicmoinmiofldhpke |
| 官方URL | https://chromewebstore.google.com/detail/tabs-count/iaejhlgcnijhbdilicmoinmiofldhpke |
| 简介 | Counts the number of open browser tabs |
| 文件大小 | 6.83 KB |
| 安装次数 | 168 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2022-09-15 |
| 上架时间 | 2022-09-14 |
| 评分 | 3.75/5 共4次评分 |
| 开发者 | Kanban Labs |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 帮助页面URL | https://kanban.ee |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Tabs count",
"version": "1.0.1",
"manifest_version": 3,
"description": "Counts the number of open browser tabs",
"action": {
"default_title": "Tab count",
"default_icon": "icons\/icon-48x48.png"
},
"permissions": [
"notifications"
],
"icons": {
"48": "icons\/icon-48x48.png",
"144": "icons\/icon-144x144.png"
},
"content_security_policy": {
"extension_pages": "default-src 'self';"
},
"background": {
"service_worker": "js\/background.js"
}
} | |