draw.io for Notion
Insert draw.io diagrams in Notion pages and edit them
Wat is draw.io for Notion?
draw.io for Notion is een Chrome-extensie ontwikkeld door https://diagrams.net, en de belangrijkste functie is "Insert draw.io diagrams in Notion pages and edit them".
Extensie Screenshots
Download het CRX-bestand van de extensie draw.io for Notion
Download draw.io for Notion-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | draw.io for Notion |
ID | plhaalebpkihaccllnkdaokdoeaokmle |
Officiële URL | https://chromewebstore.google.com/detail/drawio-for-notion/plhaalebpkihaccllnkdaokdoeaokmle |
Beschrijving | Insert draw.io diagrams in Notion pages and edit them |
Bestandsgrootte | 38.86 KB |
Aantal Installaties | 44,443 |
Huidige Versie | 1.2.5 |
Laatst Bijgewerkt | 2023-09-13 |
Publicatiedatum | 2021-10-21 |
Beoordeling | 3.24/5 Totaal 45 Beoordelingen |
Ontwikkelaar | https://diagrams.net |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.diagrams.net |
Help Pagina-URL | https://www.drawio.com/blog/drawio-notion |
URL van de Privacybeleid Pagina | https://www.drawio.com/trust |
Ondersteunde Talen | 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 } |