New Tab in Group
Opens a new tab in the current group via keyboard shortcut
什麼是New Tab in Group?
New Tab in Group是由Toby Wolff-Maritz開發的Chrome擴展程式,該擴展的主要功能是“Opens a new tab in the current group via keyboard shortcut”。
擴展截圖
下載New Tab in Group擴展crx文件
下載New Tab in Group擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A simple extension that opens a new tab in the current tab group using a shortcut. Windows: Ctrl+Shift+Y Mac: Command+Shift+Y Chrome OS: Ctrl+Shift+U Linux: Ctrl+Shift+J
擴展基本資訊
名稱 | |
ID | cgcjmikekhoocfjbihnklkpfapmgjboi |
官方網址 | https://chromewebstore.google.com/detail/new-tab-in-group/cgcjmikekhoocfjbihnklkpfapmgjboi |
簡介 | Opens a new tab in the current group via keyboard shortcut |
檔案大小 | 9.3 KB |
安裝次數 | 63 |
目前版本 | 0.0.1 |
更新時間 | 2022-07-25 |
上架時間 | 2022-07-23 |
評分 | 5.00/5 共 2 次評分 |
開發者 | Toby Wolff-Maritz |
電子郵箱 | [email protected] |
付費類型 | free |
說明頁面URL | https://github.com/tmaritz/chrome-extension-new-tab-in-group |
支援的語言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "New Tab in Group", "version": "0.0.1", "description": "Opens a new tab in the current group via keyboard shortcut", "manifest_version": 3, "background": { "service_worker": "background.js" }, "action": [], "commands": { "_execute_action": { "suggested_key": { "windows": "Ctrl+Shift+Y", "mac": "Command+Shift+Y", "chromeos": "Ctrl+Shift+U", "linux": "Ctrl+Shift+J" } } }, "icons": { "16": "assets\/layer-plus16.png", "32": "assets\/layer-plus32.png", "64": "assets\/layer-plus64.png", "128": "assets\/layer-plus128.png" } } |