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 擴展基本資訊
| 名稱 | |
| ID | lhnaddgiebpcecbcmfcjmlhinfpkkjii |
| 官方網址 | 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"
}
}
} | |