Switch Tab Shortcut
Customize chrome shortcut to switch tabs
What is Switch Tab Shortcut?
Switch Tab Shortcut is a Chrome extension developed by Stanley Guevara, and its main feature is "Customize chrome shortcut to switch tabs".
Download Switch Tab Shortcut Extension CRX File
Download Switch Tab Shortcut 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
Simple extension for switching to next/previous tab. Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.
Extension Basic Information
Name | Switch Tab Shortcut |
ID | pfeobfgjcmcpgkodpodibnggeanmoddk |
Official URL | https://chromewebstore.google.com/detail/switch-tab-shortcut/pfeobfgjcmcpgkodpodibnggeanmoddk |
Description | Customize chrome shortcut to switch tabs |
File Size | 3.37 KB |
Installation Count | 27 |
Current Version | 1.0 |
Last Updated | 2016-10-16 |
Publish Date | 2016-10-16 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Stanley Guevara |
Payment Type | free |
Extension Website | https://github.com/stanleyguevara/chrome-switch-tab-shortcut |
Help Page URL | https://github.com/stanleyguevara/chrome-switch-tab-shortcut |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Switch Tab Shortcut", "permissions": [ "tabs" ], "version": "1.0", "description": "Customize chrome shortcut to switch tabs", "commands": { "next-tab": { "suggested_key": { "default": "Ctrl+Right", "mac": "Command+Right" }, "description": "Next tab" }, "prev-tab": { "suggested_key": { "default": "Ctrl+Left", "mac": "Command+Left" }, "description": "Prev tab" } }, "background": { "scripts": [ "main.js" ], "persistent": false } } |