1// Title: Default
2// Description: Default configuration
3// Type: mouse-profile
4// Author: Emdek <michal@emdek.pl>, Piotr Wójcik <chocimier@tlen.pl>
5// Version: 0.9
6
7[
8	{
9		"context": "Generic",
10		"gestures": [
11			{
12				"action": "GoBack",
13				"steps": [
14					"pressBack"
15				]
16			},
17			{
18				"action": "GoForward",
19				"steps": [
20					"pressForward"
21				]
22			},
23			{
24				"action": "GoForward",
25				"steps": [
26					"pressLeft",
27					"pressRight"
28				]
29			},
30			{
31				"action": "Rewind",
32				"steps": [
33					"pressRight+shift",
34					"pressLeft"
35				]
36			},
37			{
38				"action": "FastForward",
39				"steps": [
40					"pressLeft+shift",
41					"pressRight"
42				]
43			},
44			{
45				"action": "StartMoveScroll",
46				"steps": [
47					"pressMiddle"
48				]
49			},
50			{
51				"action": "CloseTab",
52				"steps": [
53					"pressRight",
54					"moveDown",
55					"moveRight",
56					"releaseRight"
57				]
58			},
59			{
60				"action": "NewTab",
61				"steps": [
62					"pressRight",
63					"moveDown",
64					"releaseRight"
65				]
66			},
67			{
68				"action": "Rewind",
69				"steps": [
70					"pressRight",
71					"moveLeft",
72					"moveDown",
73					"releaseRight"
74				]
75			},
76			{
77				"action": "GoBack",
78				"steps": [
79					"pressRight",
80					"moveLeft",
81					"releaseRight"
82				]
83			},
84			{
85				"action": "FastForward",
86				"steps": [
87					"pressRight",
88					"moveRight",
89					"moveUp",
90					"releaseRight"
91				]
92			},
93			{
94				"action": "GoForward",
95				"steps": [
96					"pressRight",
97					"moveRight",
98					"releaseRight"
99				]
100			},
101			{
102				"action": "Reload",
103				"steps": [
104					"pressRight",
105					"moveUp",
106					"moveDown",
107					"releaseRight"
108				]
109			},
110			{
111				"action": "GoToParentDirectory",
112				"steps": [
113					"pressRight",
114					"moveUp",
115					"moveLeft",
116					"releaseRight"
117				]
118			},
119			{
120				"action": "Stop",
121				"steps": [
122					"pressRight",
123					"moveUp",
124					"releaseRight"
125				]
126			},
127			{
128				"action": "GoBack",
129				"steps": [
130					"pressRight",
131					"pressLeft"
132				]
133			},
134			{
135				"action": "ActivateTabOnRight",
136				"steps": [
137					"pressRight",
138					"scrollDown"
139				]
140			},
141			{
142				"action": "ActivateTabOnLeft",
143				"steps": [
144					"pressRight",
145					"scrollUp"
146				]
147			},
148			{
149				"action": "ZoomOut",
150				"steps": [
151					"scrollDown+ctrl"
152				]
153			},
154			{
155				"action": "ZoomIn",
156				"steps": [
157					"scrollUp+ctrl"
158				]
159			}
160		]
161	},
162	{
163		"context": "Link",
164		"gestures": [
165			{
166				"action": "OpenLinkInNewTab",
167				"steps": [
168					"pressLeft+alt",
169					"releaseLeft+alt"
170				]
171			},
172			{
173				"action": "OpenLinkInNewTabBackground",
174				"steps": [
175					"pressLeft+ctrl",
176					"releaseLeft+ctrl"
177				]
178			},
179			{
180				"action": "OpenLinkInNewTab",
181				"steps": [
182					"pressLeft+shift",
183					"releaseLeft+shift"
184				]
185			},
186			{
187				"action": "OpenLinkInNewTabBackground",
188				"steps": [
189					"pressMiddle"
190				]
191			},
192			{
193				"action": "OpenLinkInNewTabBackground",
194				"steps": [
195					"pressRight",
196					"moveDown",
197					"moveUp",
198					"releaseRight"
199				]
200			},
201			{
202				"action": "OpenLinkInNewTab",
203				"steps": [
204					"pressRight",
205					"moveDown",
206					"releaseRight"
207				]
208			}
209		]
210	},
211	{
212		"context": "NoTabHandle",
213		"gestures": [
214			{
215				"action": "NewTab",
216				"steps": [
217					"doubleClickLeft"
218				]
219			},
220			{
221				"action": "NewTabPrivate",
222				"steps": [
223					"doubleClickLeft+shift"
224				]
225			},
226			{
227				"action": "NewTab",
228				"steps": [
229					"pressMiddle"
230				]
231			}
232		]
233	},
234	{
235		"context": "TabHandle",
236		"gestures": [
237			{
238				"action": "CloseTab",
239				"steps": [
240					"pressLeft+shift"
241				]
242			},
243			{
244				"action": "CloseTab",
245				"steps": [
246					"pressMiddle"
247				]
248			}
249		]
250	},
251	{
252		"context": "ToolBar",
253		"gestures": [
254			{
255				"action": "NoAction",
256				"steps": [
257					"pressMiddle"
258				]
259			}
260		]
261	}
262]
263