-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
89 lines (88 loc) · 2.12 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "Someity",
"description": "Making the Web Accessible for All",
"version": "1.4.0",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"author": "Rohan Lekhwani and Aaditya Joshi",
"homepage_url": "https://someity.tech",
"short_name": "Someity",
"permissions": ["activeTab", "storage", "contextMenus"],
"action": {
"default_popup": "popup.html",
"default_icon": "icon.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"css": ["contentCss.css"],
"js": [
"jquery-3.1.0.min.js",
"jquery.lettering-0.6.1.min.js",
"contentScript.js"
]
}
],
"options_page": "options.html",
"icons": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"web_accessible_resources": [
{
"resources": [
"scripts/css/fonts/Sign-Language.ttf",
"scripts/css/*",
"scripts/*",
"images/*"
],
"matches": ["http://*/*", "https://*/*", "file://*/*"]
}
],
"commands": {
"toggle-image-veil": {
"suggested_key": {
"default": "Alt+V",
"windows": "Alt+V",
"mac": "Alt+V",
"chromeos": "Alt+V",
"linux": "Alt+V"
},
"description": "Toggle Image Veil"
},
"toggle-highlight-words": {
"suggested_key": {
"default": "Alt+Shift+H",
"windows": "Alt+Shift+H",
"mac": "Alt+Shift+H",
"chromeos": "Alt+Shift+H",
"linux": "Alt+Shift+H"
},
"description": "Toggle Highlight Words"
},
"toggle-magnifier": {
"suggested_key": {
"default": "Alt+Shift+M",
"windows": "Alt+Shift+M",
"mac": "Alt+Shift+M",
"chromeos": "Alt+Shift+M",
"linux": "Alt+Shift+M"
},
"description": "Toggle Magnifier"
},
"toggle-emphasize-links": {
"suggested_key": {
"default": "Alt+Shift+E",
"windows": "Alt+Shift+E",
"mac": "Alt+Shift+E",
"chromeos": "Alt+Shift+E",
"linux": "Alt+Shift+E"
},
"description": "Toggle Emphasize Links"
}
}
}