Close Notion Tab

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

What is Close Notion Tab?

Close Notion Tab is a Chrome extension developed by https://mskelton.dev, and its main feature is "Automatically close Notion share link tabs after the desktop app opens.".

Extension Screenshots

screenshot

Download Close Notion Tab Extension CRX File

Download Close Notion Tab extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Close Notion Tab Close Notion Tab
ID gnmlnelgpkmikakfkeejommjoknnlpjj
Official URL https://chromewebstore.google.com/detail/close-notion-tab/gnmlnelgpkmikakfkeejommjoknnlpjj
Description Automatically close Notion share link tabs after the desktop app opens.
File Size 10.84 KB
Installation Count 92
Current Version 1.0
Last Updated 2023-03-27
Publish Date 2023-03-27
Rating 5.00/5 Total 1 Ratings
Developer https://mskelton.dev
Email [email protected]
Payment Type free
Extension Website https://github.com/mskelton/close-notion-tab
Help Page URL https://github.com/mskelton/close-notion-tab/issues
Supported Languages 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"
        }
    ]
}