TabX
🪣 A simple tab management tool
什么是TabX?
TabX是由unvalley开发的Chrome扩展程序,该扩展的主要功能是“🪣 A simple tab management tool”。
扩展截图
下载TabX扩展crx文件
下载TabX扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
TabX - 🪣 A simple tab management tool
- Simple UI
- Built-in dark mode
- Fuzzy search
- Copy tab links for markdown and Scrapbox
- OSS 扩展基本信息
| 名称 | |
| ID | pnomgepiknocmkmncjkcchojfiookljb |
| 官方URL | https://chromewebstore.google.com/detail/tabx/pnomgepiknocmkmncjkcchojfiookljb |
| 简介 | 🪣 A simple tab management tool |
| 文件大小 | 231 KB |
| 安装次数 | 55 |
| 当前版本 | 0.0.7 |
| 更新时间 | 2022-04-06 |
| 上架时间 | 2021-06-15 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | unvalley |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://tabx.app |
| 帮助页面URL | https://github.com/unvalley/TabX/discussions |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "TabX",
"description": "\ud83e\udea3 A simple tab management tool",
"version": "0.0.7",
"icons": {
"16": "assets\/icons\/16.png",
"48": "assets\/icons\/48.png",
"128": "assets\/icons\/128.png"
},
"browser_action": {
"default_icon": {
"16": "assets\/icons\/16.png",
"48": "assets\/icons\/48.png",
"128": "assets\/icons\/128.png"
}
},
"background": {
"scripts": [
"background.js"
]
},
"commands": {
"store-all-tabs": {
"description": "__MSG_store_all_tabs__",
"global": true
}
},
"permissions": [
"storage",
"tabs"
],
"content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.google-analytics.com https:\/\/apis.google.com __DEV_CSP__; object-src 'self'",
"offline_enabled": true
} | |