manifest.json
 1{
 2    "manifest_version": 2,
 3    "name": "Touchscreen Swipe Navigation",
 4    "author" : "Francesco Pasa",
 5    "version": "1.0",
 6    "description": "Adds touchscreen gestures (not trackpad or mouse gestures) to navigate back, forward and reload the page to Firefox. The gestures provided are all single finger, using swipes and pull down from the top of the page, at any position in the page. This makes it easy to navigate when holding the device with both hands.",
 7    "icons": {
 8        "128": "assets/icon.svg"
 9    },
10    "content_scripts": [
11        {
12            "matches": [
13                "*://*/*"
14            ],
15            "js": [
16                "navigate.js"
17            ]
18        }
19    ],
20    "browser_specific_settings": {
21        "gecko": {
22            "id": "touchscreen-swipe-navigate@fpasa.xyz"
23        }
24    },
25    "web_accessible_resources": [
26        "assets/arrow-circle-left.svg",
27        "assets/arrow-circle-right.svg",
28        "assets/arrow-clockwise.svg"
29    ]
30}