Merge Windows
Merge windows into the active one
什么是Merge Windows?
Merge Windows是由Sindre Sorhus开发的Chrome扩展程序,该扩展的主要功能是“Merge windows into the active one”。
扩展截图
下载Merge Windows扩展crx文件
下载Merge Windows扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension lets you easily merge all tabs in different windows into one window. Just press the "merge windows" toolbar button.
扩展基本信息
名称 | Merge Windows |
ID | kbpinmnkhfkoidiinmapkhifnfoiklkb |
官方URL | https://chromewebstore.google.com/detail/merge-windows/kbpinmnkhfkoidiinmapkhifnfoiklkb |
简介 | Merge windows into the active one |
文件大小 | 4.87 KB |
安装次数 | 2,542 |
当前版本 | 1.2.0 |
更新时间 | 2021-08-06 |
上架时间 | 2020-05-18 |
评分 | 4.85/5 共13次评分 |
开发者 | Sindre Sorhus |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/sindresorhus/merge-windows |
帮助页面URL | https://github.com/sindresorhus/merge-windows/issues |
隐私政策页面URL | https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Merge Windows", "version": "1.2.0", "description": "Merge windows into the active one", "homepage_url": "https:\/\/github.com\/sindresorhus\/merge-windows", "manifest_version": 2, "minimum_chrome_version": "61", "icons": { "128": "icon.png" }, "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_title": "Merge Windows", "default_icon": "icon.png" } } |