Embed GitHub Markdown Links

Embed GitHub Markdown Links

Locates hyperlinks in Markdown documents on GitHub that link to other Markdown documents and embeds the linked document inline.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Embed GitHub Markdown Links",
  "description": "Locates hyperlinks in Markdown documents on GitHub that link to other Markdown documents and embeds the linked document inline.",
  "version": "1.2.1",
  "content_scripts": [
    {
      "matches": [
        "*://github.com/*",
        "*://www.github.com/*"
      ],
      "js": [
        "run.js"
      ],
      "run_at": "document_end"
    }
  ]
}