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 Академия開發的Chrome擴展程式,該擴展的主要功能是“This extension will replace standard Azure DevOps Wiki markdown editor with custom editor with WYSIWYG capabilities”。
擴展截圖
下載Azure DevOps Wiki Editor擴展crx文件
下載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 |
官方網址 | 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" ] } |