-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
35 lines (33 loc) · 766 Bytes
/
manifest.json
File metadata and controls
35 lines (33 loc) · 766 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
29
30
31
32
33
34
35
{
"manifest_version": 3,
"name": "Polyphem Clicker",
"version": "1.0",
"permissions": ["storage"],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
},
"icons": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"content_scripts": [
{
"matches": ["https://dashboard.gymnasiumsteglitz.de/*"],
"js": ["content.js"]
}
],
"web_accessible_resources": [
{
"resources": ["face.png","face1.png","sounds/point.mp3","sounds/polyphem.mp3","images/face.png","images/face1.png"],
"matches": ["https://dashboard.gymnasiumsteglitz.de/*"]
}
]
}