-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
42 lines (35 loc) · 931 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
40
41
42
{
"manifest_version": 2,
"name": "Undo Movement",
"description": "Lets you undo accidental page movements (eg an accidental page down)",
"version": "1.0.1",
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"192": "icon192.png"
},
"background": {
"scripts": ["jquery-3.1.0.min.js", "undo.js"],
"persistent": true
},
"browser_action": {
"default_popup": "popup.html"
},
"content_scripts": [{
"js": ["jquery-3.1.0.min.js", "scroll.js"],
"matches": ["http://*/*", "https://*/*", "ftp://*/*"],
"run_at": "document_end"
}],
"commands": {
"undo": {
"suggested_key": {
"default": "Ctrl+Shift+K"
},
"description": "Undo the most recent page scrolling action"
}
},
"permissions": [
"activeTab",
"<all_urls>"
]
}