Auto Closer

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

Wat is Auto Closer?

Auto Closer is een Chrome-extensie ontwikkeld door Mt.blue81, en de belangrijkste functie is "An extension that just close the tabs you don't need.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Auto Closer

Download Auto Closer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Auto Closer Auto Closer
ID ligkadlbclfnnfgjmeplpebnjdgcembn
Officiële URL https://chromewebstore.google.com/detail/auto-closer/ligkadlbclfnnfgjmeplpebnjdgcembn
Beschrijving An extension that just close the tabs you don't need.
Bestandsgrootte 13.68 KB
Aantal Installaties 579
Huidige Versie 2.1.0
Laatst Bijgewerkt 2023-10-30
Publicatiedatum 2021-01-13
Beoordeling 4.67/5 Totaal 3 Beoordelingen
Ontwikkelaar Mt.blue81
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/MtBlue81/auto-closer
Ondersteunde Talen 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"
            ]
        }
    ]
}