draw.io for Notion
Insert draw.io diagrams in Notion pages and edit them
Qu'est-ce que draw.io for Notion ?
draw.io for Notion est une extension Chrome développée par https://diagrams.net, et sa fonction principale est "Insert draw.io diagrams in Notion pages and edit them".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension draw.io for Notion
Téléchargez les fichiers d'extension draw.io for Notion au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | draw.io for Notion |
ID | plhaalebpkihaccllnkdaokdoeaokmle |
URL Officiel | https://chromewebstore.google.com/detail/drawio-for-notion/plhaalebpkihaccllnkdaokdoeaokmle |
Description | Insert draw.io diagrams in Notion pages and edit them |
Taille du Fichier | 38.86 KB |
Nombre d'Installations | 44,443 |
Version Actuelle | 1.2.5 |
Dernière Mise à Jour | 2023-09-13 |
Date de Publication | 2021-10-21 |
Évaluation | 3.24/5 Total 45 Évaluations |
Développeur | https://diagrams.net |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.diagrams.net |
URL de la Page d'Aide | https://www.drawio.com/blog/drawio-notion |
URL de la Page de Politique de Confidentialité | https://www.drawio.com/trust |
Langues Prises en Charge | 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 } |