Group Tabs By Domain
New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs.
什麼是Group Tabs By Domain?
Group Tabs By Domain是由grouptabsbydomain開發的Chrome擴展程式,該擴展的主要功能是“New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs.”。
擴展截圖
下載Group Tabs By Domain擴展crx文件
下載Group Tabs By Domain擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Group all the tabs by domain/website url. This will help user to keep tabs organized. New tabs are automatically moved to the correct group. If no group is available then new group will be created. It groups all tabs by top level domain. group name will be GOOGLE for both below url(s). https://google.com https://docs.google.com
擴展基本資訊
名稱 | Group Tabs By Domain |
ID | icmbnkmjhdapliaologdghjfpcmcimln |
官方網址 | https://chromewebstore.google.com/detail/group-tabs-by-domain/icmbnkmjhdapliaologdghjfpcmcimln |
簡介 | New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs. |
檔案大小 | 63.21 KB |
安裝次數 | 3,084 |
目前版本 | 0.0.0.1 |
更新時間 | 2022-06-08 |
上架時間 | 2022-06-08 |
評分 | 4.52/5 共 31 次評分 |
開發者 | grouptabsbydomain |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Group Tabs By Domain", "version": "0.0.0.1", "description": "New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs.", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "action": { "default_popup": "popup.html" }, "permissions": [ "tabGroups", "tabs" ], "background": { "service_worker": "service-worker.js" }, "commands": { "group-tabs-by-domain": { "suggested_key": { "default": "Ctrl+Shift+Left", "mac": "Command+Shift+Left" }, "description": "New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs." } } } |