-
Notifications
You must be signed in to change notification settings - Fork 99
/
manifest.json
executable file
·27 lines (27 loc) · 1015 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
{
"background": {
"scripts": [ "pages/background.js" ],
"persistent": false
},
"content_scripts": [ {
"all_frames": true,
"js": [ "src/sscr.js", "src/middlemouse.js" ],
"matches": [ "http://*/*", "https://*/*", "ftp://*/*" ],
"exclude_globs": ["*.pdf*"],
"run_at": "document_start"
} ],
"description": "Scroll smoothly on all websites with your mouse and keyboard.",
"icons": {
"128": "img/128n.png",
"16": "img/16n.png",
"32": "img/32n.png",
"48": "img/48n.png"
},
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQD1YCUodXSIZuDNa4PJGDCzSWnJAsPymJLQNj+fbxNHbE8BJ4x062dCB0rg0ovXXjNjGJW5FUX+aIEdhh1oNpouWkfu0GP6D6VXCrArXS1hKa7mV8jrBSuMLQo/aU3X7iieqkDzeSFRwUaAEp54C62J22sJ06EHI1QMLuCJ6C9lVQIDAQAB",
"name": "SmoothScroll",
"options_page": "pages/options.html",
"version": "1.5.10",
"manifest_version": 2,
"permissions": ["storage", "http://*/*", "https://*/*"],
"web_accessible_resources": [ "img/cursor.png" ]
}