-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
31 lines (31 loc) · 839 Bytes
/
manifest.json
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
31
{
"name": "highlight",
"description": "Highlight any raw code text and beautify HTML, CSS, JS",
"version": "0.0.1",
"manifest_version": 3,
"author": "AutumnVN",
"homepage_url": "https://github.com/AutumnVN/highlight",
"background": {
"service_worker": "background.js",
"matches": [
"*://raw.githubusercontent.com/*"
]
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"shiki/shiki.js",
"beautify/html.js",
"beautify/css.js",
"beautify/js.js",
"content.js"
]
}
]
}