-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
46 lines (46 loc) · 1.11 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
46
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name":"Quizlet++",
"manifest_version":3,
"description": "Extension that modifies Quizlet for more \"features\".",
"icons": {
"16":"16x16.png",
"48":"48x48.png",
"128":"128x128.png"
},
"short_name":"Q++",
"version":"1.11.0",
"version_name":"Beta Build 11",
"content_scripts": [
{
"matches": [
"https://quizlet.com/*/learn*"
],
"js": ["jquery_3.4.1_slim_min.js","learn-inject1.js","combined.js"]
},
{
"matches": [
"https://quizlet.com/*/write*"
],
"js": ["jquery_3.4.1_slim_min.js","write-inject1.js","write.js"]
},
{
"matches": [
"https://quizlet.com/*/spell*"
],
"js": ["jquery_3.4.1_slim_min.js","spell-inject1.js","spell.js"]
},
{
"matches": [
"https://quizlet.com/*/match*"
],
"js": ["jquery_3.4.1_slim_min.js","match-inject1.js","match.js"]
}
],
"web_accessible_resources": [
{
"matches": [ "https://quizlet.com/*" ],
"resources": [ "learn-inject2.js", "write-inject2.js", "match-inject2.js", "spell-inject2.js"]
}
]
}