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"
    ]
}