Tab Counter
Keeps count of your open tabs and windows
什麼是Tab Counter?
Tab Counter是由Travis Gayle開發的Chrome擴展程式,該擴展的主要功能是“Keeps count of your open tabs and windows”。
擴展截圖
下載Tab Counter擴展crx文件
下載Tab Counter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Counts how many tabs you currently have open, and allows you to search through your tabs or filter the list based on different things.
Features:
- Group tabs by window, or by domain
- Search tabs by page URL or title
- Sort tabs alphabetically or by how many tabs are open in a specific domain
- Filter tabs based on the current window, find duplicate tabs, or only tabs that are currently playing sound.
- Group tabs using custom rules and names so you can always find them
This is an open-source extension, feel free to contribute yourself, or have a look. No user data is collected:
https://github.com/tgayle/tab-counter
Changelog:
2.0.0:
- Total UI overhaul!
- Rules! Define custom groups and names for websites for organization and better tab deduplication
- The "badge" showing the current number of open tabs transitions between green and red a bit more naturally
- If a domain/group only has a single tab in it, the single tab is shown instead of having to expand the group to see it.
- New "Dedupe Tabs" button: automatically close all but the first tab when you have several duplicate tabs open
- When viewing duplicate tabs, always group them by domain regardless of current settings
1.0.1:
- Fix All/Normal/Incognito filter buttons not updating the tab list 擴展基本資訊
| 名稱 | |
| ID | mnkmfefaigfcieehggcbfabgkjijigbc |
| 官方網址 | https://chromewebstore.google.com/detail/tab-counter/mnkmfefaigfcieehggcbfabgkjijigbc |
| 簡介 | Keeps count of your open tabs and windows |
| 檔案大小 | 560 KB |
| 安裝次數 | 287 |
| 目前版本 | 792c71a |
| 更新時間 | 2023-02-01 |
| 上架時間 | 2022-07-03 |
| 評分 | 3.00/5 共 1 次評分 |
| 開發者 | Travis Gayle |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/tgayle/tab-counter |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Tab Counter",
"description": "Keeps count of your open tabs and windows",
"manifest_version": 3,
"version_name": "792c71a",
"version": "2.0.0",
"permissions": [
"tabs",
"storage",
"contextMenus"
],
"background": {
"service_worker": "service-worker-loader.js",
"type": "module"
},
"action": {
"default_popup": "src\/pages\/popup\/index.html"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+T"
}
}
},
"icons": {
"16": "icons\/16.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
}
} | |