Monaco Markdown Editor For GitHub

Monaco Markdown Editor For GitHub

This extension brings the famous Monaco editor to GitHub!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Monaco Markdown Editor For GitHub",
  "version": "0.5.2",
  "description": "This extension brings the famous Monaco editor to GitHub!",
  "icons": {
    "128": "logo.drawio.png"
  },
  "options_ui": {
    "page": "./dist/options.html",
    "open_in_tab": true,
    "chrome_style": true,
    "browser_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*",
        "https://gist.github.com/*"
      ],
      "js": [
        "/dist/content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "https://github.com/*",
    "https://gist.github.com/*"
  ],
  "web_accessible_resources": [
    "dist/*"
  ]
}