Examine source code of Markdown Here

Inspect and view changes in Markdown Here 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": "__MSG_app_name__",
  "version": "2.14.2",
  "description": "__MSG_app_slogan__",
  "homepage_url": "https://markdown-here.com",
  "default_locale": "en",
  "icons": {
    "16": "common/images/icon16.png",
    "32": "common/images/icon32.png",
    "48": "common/images/icon48.png",
    "128": "common/images/icon128.png",
    "512": "common/images/icon512.png"
  },
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "background": {
    "page": "chrome/background.html#background-page",
    "service_worker": "chrome/backgroundscript.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "common/utils.js",
        "common/common-logic.js",
        "common/jsHtmlToText.js",
        "common/marked.js",
        "common/mdh-html-to-text.js",
        "common/markdown-here.js",
        "chrome/contentscript.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "common/images/icon16-button-monochrome.png",
      "19": "common/images/icon19-button-monochrome.png",
      "32": "common/images/icon32-button-monochrome.png",
      "38": "common/images/icon38-button-monochrome.png",
      "64": "common/images/icon64-button-monochrome.png"
    },
    "default_title": "__MSG_toggle_button_tooltip__",
    "browser_style": true
  },
  "options_ui": {
    "page": "common/options.html",
    "open_in_tab": true
  }
}