Auto Closer

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

Cos'è Auto Closer?

Auto Closer è un'estensione di Chrome sviluppata da Mt.blue81, e la sua funzione principale è "An extension that just close the tabs you don't need.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Auto Closer

Scarica i file di estensione Auto Closer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Auto Closer Auto Closer
ID ligkadlbclfnnfgjmeplpebnjdgcembn
URL Ufficiale https://chromewebstore.google.com/detail/auto-closer/ligkadlbclfnnfgjmeplpebnjdgcembn
Descrizione An extension that just close the tabs you don't need.
Dimensione del File 13.68 KB
Conteggio Installazioni 579
Versione Corrente 2.1.0
Ultimo Aggiornamento 2023-10-30
Data di Pubblicazione 2021-01-13
Valutazione 4.67/5 Totale 3 Valutazioni
Sviluppatore Mt.blue81
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/MtBlue81/auto-closer
Lingue Supportate 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"
            ]
        }
    ]
}