draw.io for Notion

Insert draw.io diagrams in Notion pages and edit them

什么是draw.io for Notion?

draw.io for Notion是由https://diagrams.net开发的Chrome扩展程序,该扩展的主要功能是“Insert draw.io diagrams in Notion pages and edit them”。

扩展截图

screenshot

下载draw.io for Notion扩展crx文件

下载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 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
}