-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
52 lines (52 loc) · 1.23 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
47
48
49
50
51
52
{
"manifest_version": 3,
"name": "eyechrome",
"description": "Navigate websites with your eyes!",
"version": "1.1",
"options_page": "html/options.html",
"action": {
"default_popup": "html/index.html",
"default_icon": "assets/eyelogo.png"
},
"content_scripts": [
{
"matches": [
"http://*/*", "https://*/*"
],
"js": ["js/content-script.js"],
"css": ["js/content-script.css"],
"run_at": "document_idle"
}
],
"icons": {
"16": "assets/eyelogo.png",
"32": "assets/eyelogo.png",
"48": "assets/eyelogo.png",
"128": "assets/eyelogo.png"
},
"background": {
"service_worker": "js/background.js"
},
"permissions": [
"activeTab",
"scripting",
"offscreen",
"background",
"storage",
"unlimitedStorage"
],
"host_permissions": [
"*://*/*",
"http://*/*",
"https://*/*"
],
"web_accessible_resources": [
{
"resources": ["js/webgazer.js", "html/permission.html", "html/offscreen.html"],
"matches": ["http://*/*", "https://*/*"]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}