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