Quick Switch
This extension allows you to quickly switch to any application shortcut or tab pinned in any browser window.
Vad är Quick Switch?
Quick Switch är en Chrome-tillägg utvecklad av mhenry1384, och dess huvudfunktion är "This extension allows you to quickly switch to any application shortcut or tab pinned in any browser window.".
Tilläggsskärmbilder
Ladda ner Quick Switch-förlängningens CRX-fil
Ladda ner Quick Switch-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
This extension is intended to be launched via a global keyboard shortcut. Then from any application on your computer, hit that shortcut and then another key to make a particular pinned tab active. To set the global hotkey, click the Keyboard shortcuts link in Chrome's Extensions screen. In the box next to "Popup Quick Switch" set the hotkey, then set the dropdown to "Global". If you are running Chrome under multiple user profiles, you will have to install the extension on each profile (and assign a different global hotkey for each). Permissions: Requires access to the current tab information, which Chrome reports as "read your browser history". It does not actually read your browser history.
Grundläggande Information om Tillägg
Namn | |
ID | pliiecepjdknmcninijkgcboekaomphi |
Officiell webbadress | https://chromewebstore.google.com/detail/quick-switch/pliiecepjdknmcninijkgcboekaomphi |
Beskrivning | This extension allows you to quickly switch to any application shortcut or tab pinned in any browser window. |
Filstorlek | 301 KB |
Antal Installationer | 43 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2014-09-24 |
Publiceringsdatum | 2014-09-24 |
Betyg | 1.00/5 Totalt 1 Betyg |
Utvecklare | mhenry1384 |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "background": { "scripts": [ "background.js" ] }, "name": "Quick Switch", "description": "This extension allows you to quickly switch to any application shortcut or tab pinned in any browser window.", "version": "1.1", "icons": { "128": "icon128.png" }, "browser_action": { "default_icon": "icon19.png", "default_popup": "popup.html?modal=true" }, "permissions": [ "tabs" ], "commands": { "popup-quick-search": { "description": "Popup Quick Switch", "suggested_key": { "default": "Ctrl+1" } } } } |