Azure DevOps Wiki Editor

Azure DevOps Wiki Editor

This extension will replace standard Azure DevOps Wiki markdown editor with custom editor with WYSIWYG capabilities

Merlin
Additional files are visible only to premium users

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