Merge Windows

Merge windows into the active one

What is Merge Windows?

Merge Windows is a Chrome extension developed by Sindre Sorhus, and its main feature is "Merge windows into the active one".

Extension Screenshots

screenshot

Download Merge Windows Extension CRX File

Download Merge Windows extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension lets you easily merge all tabs in different windows into one window. Just press the "merge windows" toolbar button.                    

Extension Basic Information

Name Merge Windows Merge Windows
ID kbpinmnkhfkoidiinmapkhifnfoiklkb
Official URL https://chromewebstore.google.com/detail/merge-windows/kbpinmnkhfkoidiinmapkhifnfoiklkb
Description Merge windows into the active one
File Size 4.87 KB
Installation Count 2,542
Current Version 1.2.0
Last Updated 2021-08-06
Publish Date 2020-05-18
Rating 4.85/5 Total 13 Ratings
Developer Sindre Sorhus
Email [email protected]
Payment Type free
Extension Website https://github.com/sindresorhus/merge-windows
Help Page URL https://github.com/sindresorhus/merge-windows/issues
Privacy Policy Page URL https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
Supported Languages 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"
    }
}