Tab grouper
A tab grouping extension by Explosion-Scratch. This extension is open source here:…
什麼是Tab grouper?
Tab grouper是由Explosion-Scratch開發的Chrome擴展程式,該擴展的主要功能是“A tab grouping extension by Explosion-Scratch. This extension is open source here:…”。
擴展截圖
下載Tab grouper擴展crx文件
下載Tab grouper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A tab grouping extension by Explosion-Scratch. This extension is open source here: https://github.com/Explosion-Scratch/tab_grouping This extension allows automatically grouping tabs, manually grouping tabs, ungrouping them, naming the groups automatically and so much more!
擴展基本資訊
名稱 | Tab grouper |
ID | ebaakekgcpaojdlfcfmlaelgaacmdeje |
官方網址 | https://chromewebstore.google.com/detail/tab-grouper/ebaakekgcpaojdlfcfmlaelgaacmdeje |
簡介 | A tab grouping extension by Explosion-Scratch. This extension is open source here:… |
檔案大小 | 31.63 KB |
安裝次數 | 93 |
目前版本 | 1.0.0 |
更新時間 | 2021-12-05 |
上架時間 | 2021-12-03 |
評分 | 5.00/5 共 2 次評分 |
開發者 | Explosion-Scratch |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab grouper", "version": "1.0.0", "background": { "service_worker": "background.js" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png", "256": "icon256.png" }, "permissions": [ "tabs", "tabGroups", "storage" ], "manifest_version": 3, "action": { "default_popup": "popup.html" }, "options_ui": { "page": "settings.html", "open_in_tab": true }, "commands": { "group": { "suggested_key": { "default": "Ctrl+G" }, "description": "Group tabs in the current window by domain" }, "collapse": { "suggested_key": { "default": "Ctrl+Shift+G" }, "description": "Collapse non focused tab groups in the current window" }, "ungroup": { "description": "Ungroup all tabs in the current window" } } } |