Notion - Add to calendar

This extension create a link for save notion event in google calendar

ما هو Notion - Add to calendar؟

Notion - Add to calendar هو إضافة Chrome تم تطويرها بواسطة https://hugolevet.fr، والميزة الرئيسية لها هي "This extension create a link for save notion event in google calendar".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Notion - Add to calendar

قم بتنزيل ملفات الامتداد Notion - Add to calendar بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        You can add simply notion's events in your calendar.
For the moment, just google calendar is supported.                    

معلومات أساسية عن التمديد

الاسم Notion - Add to calendar Notion - Add to calendar
ID fmopabaabflalnnhjknhemmpenfjlldh
عنوان URL الرسمي https://chromewebstore.google.com/detail/notion-add-to-calendar/fmopabaabflalnnhjknhemmpenfjlldh
الوصف This extension create a link for save notion event in google calendar
حجم الملف 14.5 KB
عدد التثبيتات 1,846
النسخة الحالية 2.1.0
آخر تحديث 2024-02-20
تاريخ النشر 2021-09-10
تقييم 2.00/5 مجموع تقييمات 6
المطور https://hugolevet.fr
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://hugolevet.fr/notion-add-to-calendar/
عنوان صفحة سياسة الخصوصية https://hugolevet.fr/p/disable-cookies-privacy.html
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "2.1.0",
    "name": "Notion - Add to calendar",
    "description": "This extension create a link for save notion event in google calendar",
    "offline_enabled": true,
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.notion.so\/*",
                "*:\/\/*.notion.site\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "icon.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    }
}