Auto Closer

An extension that just close the tabs you don't need.

What is Auto Closer?

Auto Closer is a Chrome extension developed by Mt.blue81, and its main feature is "An extension that just close the tabs you don't need.".

Extension Screenshots

screenshot

Download Auto Closer Extension CRX File

Download Auto Closer 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

                        1. Add your site URL. (as a regular expression) option-image
2. Then open your site.
3. Site will close in a second.

It is mainly intended for closing tabs that are no longer needed when opening applications via a browser.
The delay to close can be changed in the extension option.                    

Extension Basic Information

Name Auto Closer Auto Closer
ID ligkadlbclfnnfgjmeplpebnjdgcembn
Official URL https://chromewebstore.google.com/detail/auto-closer/ligkadlbclfnnfgjmeplpebnjdgcembn
Description An extension that just close the tabs you don't need.
File Size 13.68 KB
Installation Count 579
Current Version 2.1.0
Last Updated 2023-10-30
Publish Date 2021-01-13
Rating 4.67/5 Total 3 Ratings
Developer Mt.blue81
Email [email protected]
Payment Type free
Extension Website https://github.com/MtBlue81/auto-closer
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Auto Closer",
    "version": "2.1.0",
    "description": "An extension that just close the tabs you don't need.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}