This repository has been archived by the owner on Dec 9, 2019. It is now read-only.
forked from nandhp/scrolling-gestures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (64 loc) · 2.22 KB
/
package.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
{
"name": "scrolling-gestures",
"title": "Scrolling Gestures",
"id": "jid0-xXJ39NPeSBeN8zbjffQa2GIA7kQ@jetpack",
"description": "Navigate your browser history with horizontal scrolling on your trackpad or mouse wheel, while still being able to scroll left and right.",
"author": "nandhp",
"license": "MPL 2.0",
"version": "1.1.0224",
"homepage": "https://github.com/nandhp/scrolling-gestures",
"icon": "icon.png",
"dependencies": ["api-utils", "addon-kit"],
"main": "lib/main.js",
"permissions": {
"private-browsing": true
},
"preferences": [
{
"title": "Gesture timeout",
"type": "integer",
"description": "Maximum interval between scroll steps in milliseconds. (Higher number allows slower gestures.)",
"value": 100,
"name": "gestureTimeout"
},
{
"title": "Gesture length",
"type": "integer",
"description": "Length of the gesture in scroll steps.",
"value": 11,
"name": "gestureLength"
},
{
"title": "Scroll inertia timeout",
"type": "integer",
"description": "After detecting a gesture, do not repeat the action until this much time (in milliseconds) has passed since the last scroll step.",
"value": 100,
"name": "gestureUnlockTimeout"
},
{
"title": "Show visual feedback",
"type": "bool",
"description": "Show gesture progress via a sliding overlay.",
"value": true,
"name": "gestureFeedback"
},
{
"title": "Reverse direction",
"type": "boolint",
"description": "Reverse the meaning of left and right scrolling.",
"on": "-1",
"off": "1",
"value": 1,
"name": "gestureReverse"
},
{
"title": "Automatically close tabs",
"type": "boolint",
"description": "Close tabs automatically if going back and no history is available",
"on": "1",
"off": "-1",
"value": 1,
"name": "gestureCloseTabs"
}
]
}