Close Notion Tab

Automatically close Notion share link tabs after the desktop app opens.

Was ist Close Notion Tab?

Close Notion Tab ist eine Chrome-Erweiterung, die von https://mskelton.dev entwickelt wurde, und ihr Hauptmerkmal ist "Automatically close Notion share link tabs after the desktop app opens.".

Erweiterungsscreenshots

screenshot

Close Notion Tab-Erweiterungs-CRX-Datei herunterladen

Laden Sie Close Notion Tab-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

                        This extension will automatically close the active browser tab for Notion share links after they are opened in the desktop app.                    

Grundlegende Informationen zur Erweiterung

Name Close Notion Tab Close Notion Tab
ID gnmlnelgpkmikakfkeejommjoknnlpjj
Offizielle URL https://chromewebstore.google.com/detail/close-notion-tab/gnmlnelgpkmikakfkeejommjoknnlpjj
Beschreibung Automatically close Notion share link tabs after the desktop app opens.
Dateigröße 10.84 KB
Installationsanzahl 92
Aktuelle Version 1.0
Letztes Update 2023-03-27
Veröffentlichungsdatum 2023-03-27
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://mskelton.dev
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/mskelton/close-notion-tab
Hilfeseite URL https://github.com/mskelton/close-notion-tab/issues
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Close Notion Tab",
    "description": "Automatically close Notion share link tabs after the desktop app opens.",
    "homepage_url": "https:\/\/github.com\/mskelton\/",
    "version": "1.0",
    "manifest_version": 3,
    "icons": {
        "16": "\/images\/icon-16.png",
        "32": "\/images\/icon-32.png",
        "48": "\/images\/icon-48.png",
        "128": "\/images\/icon-128.png"
    },
    "background": {
        "service_worker": "js\/service-worker.js",
        "type": "module"
    },
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/www.notion.so\/*"
            ],
            "resources": [
                "js\/content.js"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.notion.so\/*"
            ],
            "js": [
                "js\/content-script.js"
            ],
            "run_at": "document_end"
        }
    ]
}