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.

Was ist Close App-launcher Tabs?

Close App-launcher Tabs ist eine Chrome-Erweiterung, die von christopher.x.gerber entwickelt wurde, und ihr Hauptmerkmal ist "Close those pesky tabs after they launch apps. Specify urls to match against, and how quickly to close those tabs after they launch.".

Erweiterungsscreenshots

screenshot

Close App-launcher Tabs-Erweiterungs-CRX-Datei herunterladen

Laden Sie Close App-launcher Tabs-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Close App-launcher Tabs Close App-launcher Tabs
ID nflgfijhhdgfaihflbieofaegdiphbej
Offizielle URL https://chromewebstore.google.com/detail/close-app-launcher-tabs/nflgfijhhdgfaihflbieofaegdiphbej
Beschreibung Close those pesky tabs after they launch apps. Specify urls to match against, and how quickly to close those tabs after they launch.
Dateigröße 10.69 KB
Installationsanzahl 44
Aktuelle Version 1.0.1
Letztes Update 2023-04-04
Veröffentlichungsdatum 2022-03-21
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler christopher.x.gerber
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/gerbus/close-app-launcher-tabs
Hilfeseite URL https://github.com/gerbus/close-app-launcher-tabs/issues
Unterstützte Sprachen 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"
    }
}