-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmanifest.json
More file actions
28 lines (28 loc) · 743 Bytes
/
manifest.json
File metadata and controls
28 lines (28 loc) · 743 Bytes
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
{
"manifest_version": 2,
"name": "A2OJ Enhancer",
"description": "Make A2OJ dynamic again!",
"version": "3.1.1",
"icons": {
"128": "icons/icon-128x128.png"
},
"browser_action": {
"default_icon": {
"128": "icons/icon-128x128.png"
},
"default_title": "A2OJ Enhancer",
"default_popup": "popup.html"
},
"background": {
"scripts": ["js/eventPage.js"],
"persistent": false
},
"content_scripts": [{
"matches": ["https://a2oj.com/*"],
"js": ["js/jquery-3.4.1.min.js", "js/bootstrap.min.js", "js/content.js"],
"css": ["css/content.css", "css/bootstrap.min.css"]
}],
"permissions": [
"storage"
]
}