Inspect and view changes in Monaco Markdown Editor For GitHub 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": 2,
"name": "Monaco Markdown Editor For GitHub",
"version": "0.5.2",
"description": "This extension brings the famous Monaco editor to GitHub!",
"icons": {
"128": "logo.drawio.png"
},
"options_ui": {
"page": "./dist/options.html",
"open_in_tab": true,
"chrome_style": true,
"browser_style": true
},
"content_scripts": [
{
"matches": [
"https://github.com/*",
"https://gist.github.com/*"
],
"js": [
"/dist/content-script.js"
],
"run_at": "document_end"
}
],
"permissions": [
"storage",
"https://github.com/*",
"https://gist.github.com/*"
],
"web_accessible_resources": [
"dist/*"
]
}