blob: cbc5413adaf837f7abdc42c7c35219047253b2eb (
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
|
{
"manifest_version": 2,
"name": "Legibility",
"description": "Apply custom CSS to web pages.",
"version": "0.0.1",
"applications": {
"gecko": {
"id": "com.teddywing@legibility"
}
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": ["content.js"]
}
],
"background": {
"scripts": ["background.js"]
},
"permissions": [
"activeTab",
"webNavigation",
"http://*/*",
"https://*/*"
]
}
|