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

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

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

	"permissions": [
		"activeTab",
		"http://*/*",
		"https://*/*"
	]
}