Simple Tab Manager
Simple tab manager that allows you to easily manage and sort tabs.
什麼是Simple Tab Manager?
Simple Tab Manager是由albin.carlsson1503開發的Chrome擴展程式,該擴展的主要功能是“Simple tab manager that allows you to easily manage and sort tabs.”。
擴展截圖
下載Simple Tab Manager擴展crx文件
下載Simple Tab Manager擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Functionality: Windows: - Open and close windows - Minimize and maximize windows - Add new tab to window - Customize the title and color of the window (UI only) Tabs: - Open and close tabs - Pin and unpin tabs - Mute and unmute tabs - Move tabs within and between windows - Select multiple tabs at once with Right-Click or Ctrl+Click - Sort tabs by title or url - Filter tabs by search Other: - Supports dark mode - Supports a more compact view (grid view)
擴展基本資訊
名稱 | Simple Tab Manager |
ID | mdfbfcbfcohpbdicnpdpcdioggfdddlc |
官方網址 | https://chromewebstore.google.com/detail/simple-tab-manager/mdfbfcbfcohpbdicnpdpcdioggfdddlc |
簡介 | Simple tab manager that allows you to easily manage and sort tabs. |
檔案大小 | 123 KB |
安裝次數 | 94 |
目前版本 | 2.0.1 |
更新時間 | 2023-07-10 |
上架時間 | 2021-12-27 |
評分 | 5.00/5 共 2 次評分 |
開發者 | albin.carlsson1503 |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/EpicAlbin03/Simple-Tab-Manager |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple Tab Manager", "description": "Simple tab manager that allows you to easily manage and sort tabs.", "version": "2.0.1", "manifest_version": 3, "icons": { "16": ".\/images\/icon-16x16.png", "32": ".\/images\/icon-32x32.png", "48": ".\/images\/icon-48x48.png", "128": ".\/images\/icon-128x128.png" }, "action": { "default_popup": "index.html", "default_icons": { "16": ".\/images\/icon-16x16.png", "32": ".\/images\/icon-32x32.png", "48": ".\/images\/icon-48x48.png", "128": ".\/images\/icon-128x128.png" } }, "options_ui": { "page": "options.html", "open_in_tab": true }, "background": { "service_worker": "background.js", "type": "module" }, "permissions": [ "tabs", "storage" ] } |