๐Ÿ“ฆ hediet / browser-ext-github-monaco

๐Ÿ“„ manifest.json ยท 30 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30{
	"manifest_version": 3,
	"name": "Monaco Markdown Editor For GitHub",
	"version": "0.5.3",
	"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,
		"browser_style": true
	},
	"content_scripts": [
		{
			"matches": ["https://github.com/*", "https://gist.github.com/*"],
			"js": ["/dist/content-script.js"],
			"run_at": "document_end"
		}
	],
	"permissions": ["storage"],
	"host_permissions": ["https://github.com/*", "https://gist.github.com/*"],
	"web_accessible_resources": [
		{
			"resources": ["dist/*"],
			"matches": ["https://github.com/*", "https://gist.github.com/*"]
		}
	]
}