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…
Vad är tabswitcher?
tabswitcher är en Chrome-tillägg utvecklad av https://jhchabran.com, och dess huvudfunktion är "TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…".
Tilläggsskärmbilder
Ladda ner tabswitcher-förlängningens CRX-fil
Ladda ner tabswitcher-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | gkdkligmcadfbagoeggeohelmgalchcn |
Officiell webbadress | https://chromewebstore.google.com/detail/tabswitcher/gkdkligmcadfbagoeggeohelmgalchcn |
Beskrivning | TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension… |
Filstorlek | 375 KB |
Antal Installationer | 22 |
Aktuell Version | 1.0.2 |
Senast Uppdaterad | 2015-09-29 |
Publiceringsdatum | 2015-09-29 |
Betyg | 4.50/5 Totalt 2 Betyg |
Utvecklare | https://jhchabran.com |
Betalningssätt | free |
Tilläggswebbplats | http://jhchabran.com/blog/2011/12/17/build-a-chrome-extension-with-coffeescript/ |
Hjälpsida URL | https://github.com/jhchabran/tabswitcher |
Stödda Språk | 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 } |