Pop out tabs to new window
Click the extension's toolbar button to pop out selected tab(s) to a new window.
Apa itu Pop out tabs to new window?
Pop out tabs to new window adalah ekstensi Chrome yang dikembangkan oleh Ivan Novikov, dan fitur utamanya adalah "Click the extension's toolbar button to pop out selected tab(s) to a new window.".
Unduh Berkas CRX Ekstensi Pop out tabs to new window
Unduh file ekstensi Pop out tabs to new window dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Pop out tabs to new window |
ID | lhnaddgiebpcecbcmfcjmlhinfpkkjii |
URL Resmi | https://chromewebstore.google.com/detail/pop-out-tabs-to-new-windo/lhnaddgiebpcecbcmfcjmlhinfpkkjii |
Deskripsi | Click the extension's toolbar button to pop out selected tab(s) to a new window. |
Ukuran File | 3.38 KB |
Jumlah Instalasi | 248 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2018-03-14 |
Tanggal Publikasi | 2018-03-14 |
Penilaian | 5.00/5 Total 3 Penilaian |
Pengembang | Ivan Novikov |
Tipe Pembayaran | free |
Situs Ekstensi | https://twitter.com/ivan7237d |
Bahasa yang Didukung | 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" } } } |