Close Notion Tab

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

Что такое Close Notion Tab?

Close Notion Tab - это расширение Chrome, разработанное https://mskelton.dev, и его основная функция - "Automatically close Notion share link tabs after the desktop app opens.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Close Notion Tab

Скачайте файлы расширений 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"
        }
    ]
}