tabswitcher
TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…
What is tabswitcher?
tabswitcher is a Chrome extension developed by https://jhchabran.com, and its main feature is "TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…".
Extension Screenshots
Download tabswitcher Extension CRX File
Download tabswitcher 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
TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension settings. Suggestion: use alt-space.
Extension Basic Information
Name | |
ID | gkdkligmcadfbagoeggeohelmgalchcn |
Official URL | https://chromewebstore.google.com/detail/tabswitcher/gkdkligmcadfbagoeggeohelmgalchcn |
Description | TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension… |
File Size | 375 KB |
Installation Count | 22 |
Current Version | 1.0.2 |
Last Updated | 2015-09-29 |
Publish Date | 2015-09-29 |
Rating | 4.50/5 Total 2 Ratings |
Developer | https://jhchabran.com |
Payment Type | free |
Extension Website | http://jhchabran.com/blog/2011/12/17/build-a-chrome-extension-with-coffeescript/ |
Help Page URL | https://github.com/jhchabran/tabswitcher |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "tabswitcher", "version": "1.0.2", "browser_action": { "default_title": "Show the popup", "default_popup": "popup.html", "default_icon": { "19": "icon19.png", "38": "icon38.png" } }, "permissions": [ "tabs" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "tabswitcher.js", "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "tabswitcher.js", "background.js" ], "persistent": false }, "manifest_version": 2 } |