Simple Tab Switcher
A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.
什麼是Simple Tab Switcher?
Simple Tab Switcher是由JmQu開發的Chrome擴展程式,該擴展的主要功能是“A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.”。
擴展截圖
下載Simple Tab Switcher擴展crx文件
下載Simple Tab Switcher擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A FREE and SIMPLE tab switcher which enables a shortcut to switch the current tab to previous one. In addition, an extra shortcut to switch the current tab across different windows is also available.
- The default shortcut to switch tabs is [Alt + q] (Option + q) on MacOs.
- The default shortcut to switch windows is [Alt + w] (Option + w) on MacOs.
*P.S.* You can change it through the *chrome://extensions/shortcuts*.
It is open source at https://github.com/SanCoder-Q/tab-switcher 擴展基本資訊
| 名稱 | |
| ID | jmihjpkeaeknejefhonkbgldenaplegj |
| 官方網址 | https://chrome.google.com/webstore/detail/simple-tab-switcher/jmihjpkeaeknejefhonkbgldenaplegj |
| 簡介 | A Chrome tab switcher which enables a shortcut to switch the current tab to latest one. |
| 檔案大小 | 24.19 KB |
| 安裝次數 | 62 |
| 目前版本 | 0.2.1 |
| 更新時間 | 2022-09-24 |
| 上架時間 | 2019-03-04 |
| 評分 | 5.00/5 共 2 次評分 |
| 開發者 | JmQu |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/SanCoder-Q/tab-switcher |
| 說明頁面URL | https://github.com/SanCoder-Q/tab-switcher |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Simple Tab Switcher",
"description": "A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.",
"version": "0.2.1",
"icons": {
"16": "resources\/90.png",
"48": "resources\/90.png",
"128": "resources\/128.png"
},
"browser_action": {
"default_icon": {
"16": "resources\/90.png",
"48": "resources\/90.png",
"128": "resources\/128.png"
}
},
"background": {
"scripts": [
"bundle.min.js"
]
},
"commands": {
"switchTab": {
"suggested_key": {
"default": "Alt+Q"
},
"description": "Switch to recent tab"
},
"moveTabCrossWindow": {
"suggested_key": {
"default": "Alt+W"
},
"description": "Move current tab to next window"
}
},
"permissions": [
"storage",
"commands",
"tabs"
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"homepage_url": "https:\/\/github.com\/SanCoder-Q\/tab-switcher"
} | |