Markdown document renderer

Markdown document renderer

Renders markdown documents as if they were native html pages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "converted_from_user_script": true,
  "name": "Markdown document renderer",
  "short_name": "Takedown",
  "author": "Witiko <[email protected]>",
  "description": "Renders markdown documents as if they were native html pages",
  "version": "1.0.3",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "exclude_globs": [],
      "include_globs": [
        "*.markdown",
        "*.markdn",
        "*.mdown",
        "*.md"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "takedown.user.js"
      ],
      "run_at": "document_end"
    }
  ]
}