Inspect and view changes in Extensions for Mermaid 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
{
"name": "Extensions for Mermaid",
"version": "0.2.0",
"manifest_version": 2,
"description": "A browser extension for that adds Mermaid language support to GitHub. A fork from the not updated GitHub + Mermad extension.",
"icons": {
"16": "icons/icon-16.png",
"128": "icons/icon-128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"scripts/background.js"
]
},
"permissions": [
"https://github.com/*",
"https://*.github.com/*"
],
"options_ui": {
"page": "options.html"
},
"content_scripts": [
{
"matches": [
"https://github.com/*",
"https://*.github.com/*"
],
"js": [
"scripts/contentscript.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"browser_action": {
"default_icon": {
"19": "icons/icon-19.png",
"38": "icons/icon-38.png"
},
"default_title": "Extensions for Mermaid",
"default_popup": "popup.html"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}