Move tabs between windows
Click the extension's toolbar button, then switch to another Chrome window — selected tab(s) will move to that window.
什麼是Move tabs between windows?
Move tabs between windows是由Ivan Novikov開發的Chrome擴展程式,該擴展的主要功能是“Click the extension's toolbar button, then switch to another Chrome window — selected tab(s) will move to that window.”。
下載Move tabs between windows擴展crx文件
下載Move tabs between windows擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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/move-tabs 擴展基本資訊
| 名稱 | |
| ID | dcgkknngicjdagcjljfbhgdimlfhafag |
| 官方網址 | https://chromewebstore.google.com/detail/move-tabs-between-windows/dcgkknngicjdagcjljfbhgdimlfhafag |
| 簡介 | Click the extension's toolbar button, then switch to another Chrome window — selected tab(s) will move to that window. |
| 檔案大小 | 3.54 KB |
| 安裝次數 | 216 |
| 目前版本 | 1.0 |
| 更新時間 | 2016-11-08 |
| 上架時間 | 2016-11-08 |
| 評分 | 4.83/5 共 6 次評分 |
| 開發者 | Ivan Novikov |
| 付費類型 | free |
| 擴展官網 | https://twitter.com/ivan7237d |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Move tabs between windows",
"version": "1.0",
"description": "Click the extension's toolbar button, then switch to another Chrome window \u2014 selected tab(s) will move to that window.",
"manifest_version": 2,
"background": {
"persistent": true,
"scripts": [
"background.js"
]
},
"offline_enabled": true,
"browser_action": {
"default_title": "Move tabs to another window"
}
} | |