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 |
官方URL | 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" } |