Close Notion Tab

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

Cos'è Close Notion Tab?

Close Notion Tab è un'estensione di Chrome sviluppata da https://mskelton.dev, e la sua funzione principale è "Automatically close Notion share link tabs after the desktop app opens.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Close Notion Tab

Scarica i file di estensione Close Notion Tab 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

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

Informazioni di Base sull'Estensione

Nome Close Notion Tab Close Notion Tab
ID gnmlnelgpkmikakfkeejommjoknnlpjj
URL Ufficiale https://chromewebstore.google.com/detail/close-notion-tab/gnmlnelgpkmikakfkeejommjoknnlpjj
Descrizione Automatically close Notion share link tabs after the desktop app opens.
Dimensione del File 10.84 KB
Conteggio Installazioni 92
Versione Corrente 1.0
Ultimo Aggiornamento 2023-03-27
Data di Pubblicazione 2023-03-27
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://mskelton.dev
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/mskelton/close-notion-tab
URL della Pagina di Aiuto https://github.com/mskelton/close-notion-tab/issues
Lingue Supportate 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"
        }
    ]
}