Close App-launcher Tabs

Close those pesky tabs after they launch apps. Specify urls to match against, and how quickly to close those tabs after they launch.

Cos'è Close App-launcher Tabs?

Close App-launcher Tabs è un'estensione di Chrome sviluppata da christopher.x.gerber, e la sua funzione principale è "Close those pesky tabs after they launch apps. Specify urls to match against, and how quickly to close those tabs after they launch.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Close App-launcher Tabs

Scarica i file di estensione Close App-launcher Tabs 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

                        When a new tab opens, this extension compares that tab's URL to your custom list of URLs or URL parts. If there's a match, this extension will automatically close that tab after a small custom delay (default: 5 seconds).

Joining a lot of Zoom meetings from Google Calendar? Is Zoom leaving a lot of useless tabs open in Chrome? Linear? Other apps? Forget about it. 

Ease your cognitive load. Keep your Chrome space clean.

Issues? Report them here: https://github.com/gerbus/close-app-launcher-tabs/issues

Cheers! 
Christopher X Gerber                    

Informazioni di Base sull'Estensione

Nome Close App-launcher Tabs Close App-launcher Tabs
ID nflgfijhhdgfaihflbieofaegdiphbej
URL Ufficiale https://chromewebstore.google.com/detail/close-app-launcher-tabs/nflgfijhhdgfaihflbieofaegdiphbej
Descrizione Close those pesky tabs after they launch apps. Specify urls to match against, and how quickly to close those tabs after they launch.
Dimensione del File 10.69 KB
Conteggio Installazioni 44
Versione Corrente 1.0.1
Ultimo Aggiornamento 2023-04-04
Data di Pubblicazione 2022-03-21
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore christopher.x.gerber
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/gerbus/close-app-launcher-tabs
URL della Pagina di Aiuto https://github.com/gerbus/close-app-launcher-tabs/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Close App-launcher Tabs",
    "description": "Close those pesky tabs after they launch apps. Specify urls to match against, and how quickly to close those tabs after they launch.",
    "version": "1.0.1",
    "manifest_version": 3,
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "close-app-launcher-tabs-16.png",
            "32": "close-app-launcher-tabs-32.png",
            "48": "close-app-launcher-tabs-48.png",
            "128": "close-app-launcher-tabs-128.png"
        }
    },
    "icons": {
        "16": "close-app-launcher-tabs-16.png",
        "32": "close-app-launcher-tabs-32.png",
        "48": "close-app-launcher-tabs-48.png",
        "128": "close-app-launcher-tabs-128.png"
    }
}