-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
39 lines (39 loc) · 1014 Bytes
/
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
{
"name": "ebb",
"version": "0.0.0.1",
"manifest_version": 3,
"description": "Chrome extension to mitigate on-screen movement.",
"icons": {
"16": "icons/ebb16x16.png",
"32": "icons/ebb32x32.png",
"48": "icons/ebb48x48.png",
"128": "icons/ebb128x128.png"
},
"action": {
"default_popup": "popup/popup.html"
},
"background":{
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": ["lib/jquery.min.js","content-scripts/content.js"],
"run_at": "document_start"
}
],
"permissions":["storage"],
"commands": {
"_execute_action": {
"suggested_key": {
"windows": "Ctrl+Shift+Y",
"mac": "MacCtrl+Shift+Y",
"chromeos": "Ctrl+Shift+U",
"linux": "Ctrl+Shift+J"
},
"description": "Opens popup.html"
}
}
}