Github Excalidraw Renderer

Github Excalidraw Renderer

Convert .excalidraw files to .svg and replace content inline

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Github Excalidraw Renderer",
  "description": "Convert .excalidraw files to .svg and replace content inline",
  "version": "1.0.2",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*.excalidraw"
      ],
      "js": [
        "github-content-script.js"
      ]
    }
  ],
  "action": {
    "default_title": "Click Me"
  },
  "devtools_page": "devtools.html"
}