-
Notifications
You must be signed in to change notification settings - Fork 123
/
Copy pathmanifest.json
50 lines (48 loc) · 1.23 KB
/
manifest.json
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
44
45
46
47
48
49
50
{
"manifest_version": 2,
"name": "jetzt",
"description": "Speed Reading",
"version": "1.2.0",
"homepage_url": "https://ds300.github.io/jetzt",
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*", "file:///*"],
"css": ["jetzt.css"],
"js": [
"modules/preamble.js"
, "modules/helpers.js"
, "modules/config.js"
, "modules/themes.js"
, "modules/parse.js"
, "modules/exec.js"
, "modules/view.js"
, "modules/select.js"
, "modules/control.js"
, "modules/init.js"
, "chrome-config.js"
],
"all_frames": true
}
],
"permissions": [
"storage",
"activeTab",
"contextMenus",
"fontSettings"
],
"icons": { "16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png" },
"browser_action" : {
"default_icon" : {
"19": "img/icon19.png",
"38": "img/icon38.png"
},
"default_title" : "speed-read with jetzt"
},
"background": {
"scripts": ["background.js"],
"persistent": false
},
"options_page" : "options/index.html"
}