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
官方網址 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
}