-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
35 lines (34 loc) · 911 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
{
"name": "SwipeHistory",
"version": "1.1",
"manifest_version": 2,
"description": "Emulate macbook/chromebook (two finger) touchpad browser history navigation by abusing vertical scroll.",
"author": "Rasmus Johanson",
"homepage_url": "https://github.com/johanson/",
"minimum_chrome_version": "75",
"options_ui": {
"page": "settings/settings.html",
"chrome_style": true
},
"icons": {
"128": "assets/icon_128.png"
},
"browser_action": {
"default_popup": "settings/settings.html"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_start",
"js": [
"inject.js"
],
"match_about_blank": true
}
]
}