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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
        }
    ]
}