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"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ 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 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"
    ]
}