draw.io for Notion

Insert draw.io diagrams in Notion pages and edit them

Cos'è draw.io for Notion?

draw.io for Notion è un'estensione di Chrome sviluppata da https://diagrams.net, e la sua funzione principale è "Insert draw.io diagrams in Notion pages and edit them".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione draw.io for Notion

Scarica i file di estensione draw.io for Notion in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome draw.io for Notion draw.io for Notion
ID plhaalebpkihaccllnkdaokdoeaokmle
URL Ufficiale https://chromewebstore.google.com/detail/drawio-for-notion/plhaalebpkihaccllnkdaokdoeaokmle
Descrizione Insert draw.io diagrams in Notion pages and edit them
Dimensione del File 38.86 KB
Conteggio Installazioni 44,443
Versione Corrente 1.2.5
Ultimo Aggiornamento 2023-09-13
Data di Pubblicazione 2021-10-21
Valutazione 3.24/5 Totale 45 Valutazioni
Sviluppatore https://diagrams.net
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.diagrams.net
URL della Pagina di Aiuto https://www.drawio.com/blog/drawio-notion
URL della Pagina della Politica sulla Privacy https://www.drawio.com/trust
Lingue Supportate 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
}