-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (45 loc) · 1.07 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"manifest_version": 3,
"name": "Code Highlighter and APA Styles",
"description": "A Chrome extension to highlight code and apply APA styles in content editable elements .",
"version": "0.0.12",
"icons": {
"16": "./icons/16.png",
"32": "./icons/32.png",
"48": "./icons/48.png",
"128": "./icons/128.png",
"256": "./icons/256.png",
"512": "./icons/512.png"
},
"background": {
"service_worker": "./service-worker.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"./highlight.min.js",
"./content-script.js"
],
"css": [
"./content-style.css"
]
}
],
"action": {
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"scripting",
"storage"
],
"host_permissions": [
"https://*/*",
"http://*/*"
]
}