Close Notion Tab

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

Wat is Close Notion Tab?

Close Notion Tab is een Chrome-extensie ontwikkeld door https://mskelton.dev, en de belangrijkste functie is "Automatically close Notion share link tabs after the desktop app opens.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Close Notion Tab

Download Close Notion Tab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Close Notion Tab Close Notion Tab
ID gnmlnelgpkmikakfkeejommjoknnlpjj
Officiële URL https://chromewebstore.google.com/detail/close-notion-tab/gnmlnelgpkmikakfkeejommjoknnlpjj
Beschrijving Automatically close Notion share link tabs after the desktop app opens.
Bestandsgrootte 10.84 KB
Aantal Installaties 92
Huidige Versie 1.0
Laatst Bijgewerkt 2023-03-27
Publicatiedatum 2023-03-27
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://mskelton.dev
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/mskelton/close-notion-tab
Help Pagina-URL https://github.com/mskelton/close-notion-tab/issues
Ondersteunde Talen 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"
        }
    ]
}