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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Azure DevOps Wiki Editor 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    ]
}