aboutsummaryrefslogtreecommitdiffstats
path: root/manifest.json
blob: c30245f328b0c916b7b9f9571ed87afaa57c8fd9 (plain)
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
{
	"manifest_version": 2,
	"name": "Legibility",
	"description": "Apply custom CSS to web pages.",
	"version": "0.1.0",

	"applications": {
		"gecko": {
			"id": "com.teddywing@legibility"
		}
	},

	"content_scripts": [
		{
			"matches": [
				"http://*/*",
				"https://*/*"
			],
			"js": ["content.js"]
		}
	],

	"background": {
		"scripts": ["background.js"]
	},

	"permissions": [
		"webNavigation",
		"http://*/*",
		"https://*/*"
	],

	"commands": {
		"reload": {
			"suggested_key": {
				"default": "Ctrl+Alt+L",
				"mac": "MacCtrl+Alt+L"
			},

			"description": "Reload the extension"
		}
	}
}