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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Insert draw.io diagrams in Notion pages and edit them"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में draw.io for Notion एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } |