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…
Wat is tabswitcher?
tabswitcher is een Chrome-extensie ontwikkeld door https://jhchabran.com, en de belangrijkste functie 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…".
Extensie Screenshots
Download het CRX-bestand van de extensie tabswitcher
Download tabswitcher-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | gkdkligmcadfbagoeggeohelmgalchcn |
Officiële URL | https://chromewebstore.google.com/detail/tabswitcher/gkdkligmcadfbagoeggeohelmgalchcn |
Beschrijving | TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension… |
Bestandsgrootte | 375 KB |
Aantal Installaties | 22 |
Huidige Versie | 1.0.2 |
Laatst Bijgewerkt | 2015-09-29 |
Publicatiedatum | 2015-09-29 |
Beoordeling | 4.50/5 Totaal 2 Beoordelingen |
Ontwikkelaar | https://jhchabran.com |
Betalingswijze | free |
Extensiewebsite | http://jhchabran.com/blog/2011/12/17/build-a-chrome-extension-with-coffeescript/ |
Help Pagina-URL | https://github.com/jhchabran/tabswitcher |
Ondersteunde Talen | 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 } |