Pop out tabs to new window
Click the extension's toolbar button to pop out selected tab(s) to a new window.
Vad är Pop out tabs to new window?
Pop out tabs to new window är en Chrome-tillägg utvecklad av Ivan Novikov, och dess huvudfunktion är "Click the extension's toolbar button to pop out selected tab(s) to a new window.".
Ladda ner Pop out tabs to new window-förlängningens CRX-fil
Ladda ner Pop out tabs to new window-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
Default shortcut: Alt+P. Usually you have just the current tab selected, but Chrome also has built-in functionality to select multiple tabs: — To select specific tabs in a window, click tab handles while holding down Cmd (Mac) or Ctrl (Windows) key. — To select a range of tabs, click tab handles while holding down the Shift key. Source code: https://github.com/ivan7237d/pop-out-tabs
Grundläggande Information om Tillägg
Namn | Pop out tabs to new window |
ID | lhnaddgiebpcecbcmfcjmlhinfpkkjii |
Officiell webbadress | https://chromewebstore.google.com/detail/pop-out-tabs-to-new-windo/lhnaddgiebpcecbcmfcjmlhinfpkkjii |
Beskrivning | Click the extension's toolbar button to pop out selected tab(s) to a new window. |
Filstorlek | 3.38 KB |
Antal Installationer | 248 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2018-03-14 |
Publiceringsdatum | 2018-03-14 |
Betyg | 5.00/5 Totalt 3 Betyg |
Utvecklare | Ivan Novikov |
Betalningssätt | free |
Tilläggswebbplats | https://twitter.com/ivan7237d |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pop out tabs to new window", "version": "1.1", "description": "Click the extension's toolbar button to pop out selected tab(s) to a new window.", "manifest_version": 2, "background": { "persistent": true, "scripts": [ "background.js" ] }, "offline_enabled": true, "browser_action": { "default_title": "Pop out tabs to new window" }, "commands": { "popout_action": { "suggested_key": { "default": "Alt+P" }, "description": "Pop out tabs to new window" } } } |