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 The Академия द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will replace standard Azure DevOps Wiki markdown editor with custom editor with WYSIWYG capabilities"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Azure DevOps Wiki Editor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |