Close Notion Tab

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

什么是Close Notion Tab?

Close Notion Tab是由https://mskelton.dev开发的Chrome扩展程序,该扩展的主要功能是“Automatically close Notion share link tabs after the desktop app opens.”。

扩展截图

screenshot

下载Close Notion Tab扩展crx文件

下载Close Notion Tab扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Close Notion Tab Close Notion Tab
ID gnmlnelgpkmikakfkeejommjoknnlpjj
官方URL https://chromewebstore.google.com/detail/close-notion-tab/gnmlnelgpkmikakfkeejommjoknnlpjj
简介 Automatically close Notion share link tabs after the desktop app opens.
文件大小 10.84 KB
安装次数 92
当前版本 1.0
更新时间 2023-03-27
上架时间 2023-03-27
评分 5.00/5 共1次评分
开发者 https://mskelton.dev
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/mskelton/close-notion-tab
帮助页面URL https://github.com/mskelton/close-notion-tab/issues
支持的语言 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"
        }
    ]
}