Close Notion Tab

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

O que é Close Notion Tab?

Close Notion Tab é uma extensão do Chrome desenvolvida por https://mskelton.dev, e sua principal característica é "Automatically close Notion share link tabs after the desktop app opens.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Close Notion Tab

Baixe arquivos de extensão Close Notion Tab no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Close Notion Tab Close Notion Tab
ID gnmlnelgpkmikakfkeejommjoknnlpjj
URL Oficial https://chromewebstore.google.com/detail/close-notion-tab/gnmlnelgpkmikakfkeejommjoknnlpjj
Descrição Automatically close Notion share link tabs after the desktop app opens.
Tamanho do Arquivo 10.84 KB
Contagem de Instalações 92
Versão Atual 1.0
Última Atualização 2023-03-27
Data de Publicação 2023-03-27
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://mskelton.dev
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/mskelton/close-notion-tab
URL da Página de Ajuda https://github.com/mskelton/close-notion-tab/issues
Idiomas Suportados 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"
        }
    ]
}