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…
Cos'è tabswitcher?
tabswitcher è un'estensione di Chrome sviluppata da https://jhchabran.com, e la sua funzione principale è "TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione tabswitcher
Scarica i file di estensione tabswitcher in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | gkdkligmcadfbagoeggeohelmgalchcn |
| URL Ufficiale | https://chromewebstore.google.com/detail/tabswitcher/gkdkligmcadfbagoeggeohelmgalchcn |
| Descrizione | TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension… |
| Dimensione del File | 375 KB |
| Conteggio Installazioni | 22 |
| Versione Corrente | 1.0.2 |
| Ultimo Aggiornamento | 2015-09-29 |
| Data di Pubblicazione | 2015-09-29 |
| Valutazione | 4.50/5 Totale 2 Valutazioni |
| Sviluppatore | https://jhchabran.com |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | http://jhchabran.com/blog/2011/12/17/build-a-chrome-extension-with-coffeescript/ |
| URL della Pagina di Aiuto | https://github.com/jhchabran/tabswitcher |
| Lingue Supportate | 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
} | |