Pop out tabs to new window
Click the extension's toolbar button to pop out selected tab(s) to a new window.
Pop out tabs to new windowとは何ですか?
Pop out tabs to new windowはIvan Novikovによって開発されたChromeの拡張機能で、その主な機能は「Click the extension's toolbar button to pop out selected tab(s) to a new window.」です。
Pop out tabs to new window拡張機能のCRXファイルをダウンロード
Pop out tabs to new window拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | Pop out tabs to new window |
ID | lhnaddgiebpcecbcmfcjmlhinfpkkjii |
公式URL | https://chromewebstore.google.com/detail/pop-out-tabs-to-new-windo/lhnaddgiebpcecbcmfcjmlhinfpkkjii |
説明 | Click the extension's toolbar button to pop out selected tab(s) to a new window. |
ファイルサイズ | 3.38 KB |
インストール数 | 248 |
現在のバージョン | 1.1 |
最終更新日 | 2018-03-14 |
公開日 | 2018-03-14 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | Ivan Novikov |
支払い方法 | free |
拡張機能のウェブサイト | https://twitter.com/ivan7237d |
対応言語 | 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" } } } |