draw.io for Notion

Insert draw.io diagrams in Notion pages and edit them

ما هو draw.io for Notion؟

draw.io for Notion هو إضافة Chrome تم تطويرها بواسطة https://diagrams.net، والميزة الرئيسية لها هي "Insert draw.io diagrams in Notion pages and edit them".

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

screenshot

تحميل ملف CRX للإضافة draw.io for Notion

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

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

                        draw.io for Notion is a Chrome extension designed to enable you to insert and edit draw.io diagrams and whiteboards directly into Notion pages.

After installing, pin the draw.io extension. When editing a Notion page, an option to insert a diagram is offered when clicking the extension icon.

After creating new diagrams, simply click on the diagram to start editing again.                    

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

الاسم draw.io for Notion draw.io for Notion
ID plhaalebpkihaccllnkdaokdoeaokmle
عنوان URL الرسمي https://chromewebstore.google.com/detail/drawio-for-notion/plhaalebpkihaccllnkdaokdoeaokmle
الوصف Insert draw.io diagrams in Notion pages and edit them
حجم الملف 38.86 KB
عدد التثبيتات 44,443
النسخة الحالية 1.2.5
آخر تحديث 2023-09-13
تاريخ النشر 2021-10-21
تقييم 3.24/5 مجموع تقييمات 45
المطور https://diagrams.net
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.diagrams.net
عنوان صفحة المساعدة https://www.drawio.com/blog/drawio-notion
عنوان صفحة سياسة الخصوصية https://www.drawio.com/trust
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "draw.io for Notion",
    "version": "1.2.5",
    "description": "Insert draw.io diagrams in Notion pages and edit them",
    "permissions": [
        "storage",
        "declarativeContent"
    ],
    "host_permissions": [
        "https:\/\/*.notion.so\/*",
        "https:\/\/*.notion.site\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.notion.so\/*",
                "https:\/\/*.notion.site\/*"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "manifest_version": 3
}