Azure DevOps Wiki Editor
This extension will replace standard Azure DevOps Wiki markdown editor with custom editor with WYSIWYG capabilities
Τι είναι το Azure DevOps Wiki Editor;
Το Azure DevOps Wiki Editor είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον The Академия, και η κύρια λειτουργία του είναι "This extension will replace standard Azure DevOps Wiki markdown editor with custom editor with WYSIWYG capabilities".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Azure DevOps Wiki Editor
Λήψη αρχείων επέκτασης Azure DevOps Wiki Editor σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Replacing standard Azure DevOps Wiki markdown editor with custom WYSIWYG editor. This will allow you easily create/edit/delete tables, add lists and text formatting. You can also switch to split view if you want to display Markdown for more advanced formatting. Extension only works in editing mode on wiki pages of Azure DevOps (dev.azure.com)
Βασικές Πληροφορίες Επέκτασης
Όνομα | Azure DevOps Wiki Editor |
ID | fhdmpmfccmhbdmlaclcllpfdddfnhbec |
Επίσημο URL | https://chromewebstore.google.com/detail/azure-devops-wiki-editor/fhdmpmfccmhbdmlaclcllpfdddfnhbec |
Περιγραφή | This extension will replace standard Azure DevOps Wiki markdown editor with custom editor with WYSIWYG capabilities |
Μέγεθος Αρχείου | 296 KB |
Αριθμός Εγκαταστάσεων | 2,000 |
Τρέχουσα Έκδοση | 1.0.2 |
Τελευταία Ενημέρωση | 2021-11-01 |
Ημερομηνία Δημοσίευσης | 2021-11-01 |
Αξιολόγηση | 4.22/5 Συνολικά 9 Αξιολογήσεις |
Προγραμματιστής | The Академия |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Azure DevOps Wiki Editor", "description": "This extension will replace standard Azure DevOps Wiki markdown editor with custom editor with WYSIWYG capabilities", "version": "1.0.2", "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "page_action": { "default_icon": "icon.png", "default_title": "Azure DevOps Wiki Editor" }, "content_scripts": [ { "matches": [ "*:\/\/dev.azure.com\/*\/_wiki\/*" ], "js": [ "jquery-3.6.0.slim.min.js", "toastui-editor-all.min.js", "main.js" ], "css": [ "toastui-editor.min.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ "*.png", "*.css" ], "permissions": [ "declarativeContent" ] } |