Notion x Excalidraw Helper
A chrome extension to copy graph data between notion and excalidraw
Notion x Excalidraw Helper क्या है?
Notion x Excalidraw Helper cuberl.developer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension to copy graph data between notion and excalidraw"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Notion x Excalidraw Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A chrome extension to copy graph between notion and Excalidraw. User can copy the graph(or scene data) by select the graph they want and using command(or ctrl) + C from Excalidraw and then paste it into Notion. This extension will render the Excalidraw scene data to an image and paste it as an image block to notion. And user can copy the graph from notion image block pasted above by click the button in the block and then paste back to Excalidraw and modify it. It's really helpful for those user who loves Notion and Excalidraw and want to make figures by Excalidraw and use them in Notion.
एक्सटेंशन की मूल जानकारी
नाम | Notion x Excalidraw Helper |
ID | fbpnfcemlpcledmlpjmphpkehgokghmg |
आधिकारिक URL | https://chromewebstore.google.com/detail/notion-x-excalidraw-helpe/fbpnfcemlpcledmlpjmphpkehgokghmg |
विवरण | A chrome extension to copy graph data between notion and excalidraw |
फ़ाइल का आकार | 656 KB |
स्थापना संख्या | 120 |
वर्तमान संस्करण | 1.0.3 |
अंतिम अपडेट | 2024-01-22 |
प्रकाशन तिथि | 2023-10-18 |
रेटिंग | 5.00/5 कुल 4 रेटिंग्स |
डेवलपर | cuberl.developer |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/CuberL/chrome-extension-notion-excalidraw-helper |
सहायता पृष्ठ URL | https://github.com/CuberL/chrome-extension-notion-excalidraw-helper |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A chrome extension to copy graph data between notion and excalidraw", "version": "1.0.3", "name": "Notion x Excalidraw Helper", "browser_action": { "default_icon": "icon.png" }, "icons": { "128": "icon.png" }, "manifest_version": 3, "permissions": [], "content_scripts": [ { "matches": [ "https:\/\/www.notion.so\/*", "https:\/\/notion.so\/*" ], "js": [ "main.bundle.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ { "resources": [ "@excalidraw\/*" ], "matches": [ "https:\/\/notion.so\/*", "https:\/\/www.notion.so\/*" ] } ] } |