draw.io for Notion

Insert draw.io diagrams in Notion pages and edit them

Co je draw.io for Notion?

draw.io for Notion je rozšíření Chrome vyvinuté https://diagrams.net, a jeho hlavní funkcí je „Insert draw.io diagrams in Notion pages and edit them“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření draw.io for Notion

Stáhněte si soubory rozšíření draw.io for Notion ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název draw.io for Notion draw.io for Notion
ID plhaalebpkihaccllnkdaokdoeaokmle
Oficiální URL https://chromewebstore.google.com/detail/drawio-for-notion/plhaalebpkihaccllnkdaokdoeaokmle
Popis Insert draw.io diagrams in Notion pages and edit them
Velikost souboru 38.86 KB
Počet instalací 44,443
Aktuální Verze 1.2.5
Poslední Aktualizace 2023-09-13
Datum Vydání 2021-10-21
Hodnocení 3.24/5 Celkem 45 Hodnocení
Vývojář https://diagrams.net
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.diagrams.net
URL Stránky Nápovědy https://www.drawio.com/blog/drawio-notion
URL Stránky Zásad Ochrany Soukromí https://www.drawio.com/trust
Podporované Jazyky 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
}