draw.io for Notion
Insert draw.io diagrams in Notion pages and edit them
O que é draw.io for Notion?
draw.io for Notion é uma extensão do Chrome desenvolvida por https://diagrams.net, e sua principal característica é "Insert draw.io diagrams in Notion pages and edit them".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão draw.io for Notion
Baixe arquivos de extensão draw.io for Notion no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | draw.io for Notion |
ID | plhaalebpkihaccllnkdaokdoeaokmle |
URL Oficial | https://chromewebstore.google.com/detail/drawio-for-notion/plhaalebpkihaccllnkdaokdoeaokmle |
Descrição | Insert draw.io diagrams in Notion pages and edit them |
Tamanho do Arquivo | 38.86 KB |
Contagem de Instalações | 44,443 |
Versão Atual | 1.2.5 |
Última Atualização | 2023-09-13 |
Data de Publicação | 2021-10-21 |
Classificação | 3.24/5 Total de 45 Avaliações |
Desenvolvedor | https://diagrams.net |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.diagrams.net |
URL da Página de Ajuda | https://www.drawio.com/blog/drawio-notion |
URL da Página de Política de Privacidade | https://www.drawio.com/trust |
Idiomas Suportados | 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 } |