Switch tabs shortcuts
Adds custom shortcuts for switching tabs.
什麼是Switch tabs shortcuts?
Switch tabs shortcuts是由Yutaro Yoshii開發的Chrome擴展程式,該擴展的主要功能是“Adds custom shortcuts for switching tabs.”。
擴展截圖
下載Switch tabs shortcuts擴展crx文件
下載Switch tabs shortcuts擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension adds custom shortcuts for switching tabs. After installing, you will be able to customize your shortcuts through chrome://extensions/shortcuts The default key bindings are as follows: Jump to the previous open tab mac: "Command+Shift+Left" other platforms: "Ctrl+Shift+Left" Jump to the next open tab mac: "Command+Shift+Right" other platforms: "Ctrl+Shift+Right" Jump to the last open tab mac: "Command+Shift+Up" other platforms: "Ctrl+Shift+Up" Jump to the first open tab mac: "Command+Shift+Down" other platforms: "Ctrl+Shift+Down"
擴展基本資訊
名稱 | Switch tabs shortcuts |
ID | fejclhnofpjonlkijaekjpoehpinhlab |
官方網址 | https://chromewebstore.google.com/detail/switch-tabs-shortcuts/fejclhnofpjonlkijaekjpoehpinhlab |
簡介 | Adds custom shortcuts for switching tabs. |
檔案大小 | 8.29 KB |
安裝次數 | 255 |
目前版本 | 1.0 |
更新時間 | 2023-10-09 |
上架時間 | 2020-03-03 |
評分 | 5.00/5 共 3 次評分 |
開發者 | Yutaro Yoshii |
電子郵箱 | [email protected] |
付費類型 | free |
隱私政策頁面URL | https://developer.chrome.com/docs/webstore/program-policies/privacy |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Switch tabs shortcuts", "short_name": "Switch tabs", "version": "1.0", "description": "Adds custom shortcuts for switching tabs.", "author": "Yutaro Yoshii", "manifest_version": 2, "icons": { "16": "images\/icon_16.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs" ], "commands": { "tab_left": { "suggested_key": { "default": "Ctrl+Shift+Left", "mac": "Command+Shift+Left" }, "description": "Jump to the previous open tab" }, "tab_right": { "suggested_key": { "default": "Ctrl+Shift+Right", "mac": "Command+Shift+Right" }, "description": "Jump to the next open tab" }, "tab_first": { "suggested_key": { "default": "Ctrl+Shift+Up", "mac": "Command+Shift+Up" }, "description": "Jump to the last open tab" }, "tab_last": { "suggested_key": { "default": "Ctrl+Shift+Down", "mac": "Command+Shift+Down" }, "description": "Jump to the first open tab" } } } |