Close Notion Tab

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

Vad är Close Notion Tab?

Close Notion Tab är en Chrome-tillägg utvecklad av https://mskelton.dev, och dess huvudfunktion är "Automatically close Notion share link tabs after the desktop app opens.".

Tilläggsskärmbilder

screenshot

Ladda ner Close Notion Tab-förlängningens CRX-fil

Ladda ner Close Notion Tab-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Close Notion Tab Close Notion Tab
ID gnmlnelgpkmikakfkeejommjoknnlpjj
Officiell webbadress https://chromewebstore.google.com/detail/close-notion-tab/gnmlnelgpkmikakfkeejommjoknnlpjj
Beskrivning Automatically close Notion share link tabs after the desktop app opens.
Filstorlek 10.84 KB
Antal Installationer 92
Aktuell Version 1.0
Senast Uppdaterad 2023-03-27
Publiceringsdatum 2023-03-27
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://mskelton.dev
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/mskelton/close-notion-tab
Hjälpsida URL https://github.com/mskelton/close-notion-tab/issues
Stödda Språk 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"
        }
    ]
}