draw.io for Notion
Insert draw.io diagrams in Notion pages and edit them
¿Qué es draw.io for Notion?
draw.io for Notion es una extensión de Chrome desarrollada por https://diagrams.net, y su función principal es "Insert draw.io diagrams in Notion pages and edit them".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión draw.io for Notion
Descarga archivos de extensión draw.io for Notion en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | draw.io for Notion |
ID | plhaalebpkihaccllnkdaokdoeaokmle |
URL Oficial | https://chromewebstore.google.com/detail/drawio-for-notion/plhaalebpkihaccllnkdaokdoeaokmle |
Descripción | Insert draw.io diagrams in Notion pages and edit them |
Tamaño del Archivo | 38.86 KB |
Cantidad de Instalaciones | 44,443 |
Versión Actual | 1.2.5 |
Última Actualización | 2023-09-13 |
Fecha de Publicación | 2021-10-21 |
Calificación | 3.24/5 Total de 45 Calificaciones |
Desarrollador | https://diagrams.net |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://www.diagrams.net |
URL de la Página de Ayuda | https://www.drawio.com/blog/drawio-notion |
URL de la Página de Política de Privacidad | https://www.drawio.com/trust |
Idiomas Soportados | 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 } |