draw.io for Notion
Insert draw.io diagrams in Notion pages and edit them
Что такое draw.io for Notion?
draw.io for Notion - это расширение Chrome, разработанное https://diagrams.net, и его основная функция - "Insert draw.io diagrams in Notion pages and edit them".
Снимки экрана расширения
Скачать файл CRX расширения draw.io for Notion
Скачайте файлы расширений draw.io for Notion в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | draw.io for Notion |
ID | plhaalebpkihaccllnkdaokdoeaokmle |
Официальный URL | https://chromewebstore.google.com/detail/drawio-for-notion/plhaalebpkihaccllnkdaokdoeaokmle |
Описание | Insert draw.io diagrams in Notion pages and edit them |
Размер файла | 38.86 KB |
Количество установок | 44,443 |
Текущая Версия | 1.2.5 |
Последнее Обновление | 2023-09-13 |
Дата публикации | 2021-10-21 |
Рейтинг | 3.24/5 Всего 45 оценок |
Разработчик | https://diagrams.net |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://www.diagrams.net |
URL страницы помощи | https://www.drawio.com/blog/drawio-notion |
URL страницы политики конфиденциальности | https://www.drawio.com/trust |
Поддерживаемые языки | 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 } |