Simple Tab Switcher
A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.
What is Simple Tab Switcher?
Simple Tab Switcher is a Chrome extension developed by JmQu, and its main feature is "A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.".
Extension Screenshots
Download Simple Tab Switcher Extension CRX File
Download Simple Tab Switcher extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | jmihjpkeaeknejefhonkbgldenaplegj |
Official URL | https://chrome.google.com/webstore/detail/simple-tab-switcher/jmihjpkeaeknejefhonkbgldenaplegj |
Description | A Chrome tab switcher which enables a shortcut to switch the current tab to latest one. |
File Size | 24.19 KB |
Installation Count | 62 |
Current Version | 0.2.1 |
Last Updated | 2022-09-24 |
Publish Date | 2019-03-04 |
Rating | 5.00/5 Total 2 Ratings |
Developer | JmQu |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/SanCoder-Q/tab-switcher |
Help Page URL | https://github.com/SanCoder-Q/tab-switcher |
Supported Languages | 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" } |