Examine source code of mdblogger

Inspect and view changes in mdblogger source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "mdblogger",
  "version": "0.0.8",
  "description": "Markdown editor for blogger",
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "128": "128.png"
  },
  "author": "https://github.com/opdev1004",
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.blogger.com/*"
      ],
      "css": [
        "toastui-editor.min.css",
        "main.css"
      ],
      "js": [
        "toastui-editor-all.min.js",
        "main.js"
      ]
    }
  ]
}