Close Notion Tab

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

Co to jest Close Notion Tab?

Close Notion Tab to rozszerzenie Chrome opracowane przez https://mskelton.dev, a jego główną funkcją jest „Automatically close Notion share link tabs after the desktop app opens.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Close Notion Tab

Pobierz pliki rozszerzeń Close Notion Tab w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Close Notion Tab Close Notion Tab
ID gnmlnelgpkmikakfkeejommjoknnlpjj
Oficjalny URL https://chromewebstore.google.com/detail/close-notion-tab/gnmlnelgpkmikakfkeejommjoknnlpjj
Opis Automatically close Notion share link tabs after the desktop app opens.
Rozmiar pliku 10.84 KB
Liczba instalacji 92
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2023-03-27
Data Publikacji 2023-03-27
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://mskelton.dev
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/mskelton/close-notion-tab
Adres URL Strony Pomocy https://github.com/mskelton/close-notion-tab/issues
Obsługiwane Języki 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"
        }
    ]
}