-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
42 lines (42 loc) · 1.08 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
{
"name": "Ambrose",
"description": "Easily keep track of and answer Wizard101 trivia quizzes.",
"version": "0.1.0",
"manifest_version": 3,
"icons": {
"16": "assets/img/favicon.png",
"32": "assets/img/favicon.png",
"48": "assets/img/favicon.png",
"128": "assets/img/favicon.png"
},
"action": {
"default_popup": "index.html",
"default_title": "Ambrose"
},
"background": {
"service_worker": "./static/js/background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https://www.wizard101.com/quiz/trivia/game/*"
],
"js": [
"./static/js/content.js"
],
"css": [
"./assets/css/style.css"
],
"run_at": "document_idle",
"all_frames": true
}
],
"permissions": [ "storage" ],
"web_accessible_resources": [
{
"resources": [ "assets/img/favicon.png" ],
"matches": [ "<all_urls>" ]
}
]
}