forked from olegcherr/Reedy-for-Chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
64 lines (61 loc) · 1.22 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"manifest_version": 2,
"name": "Reedy",
"short_name": "Reedy",
"description": "Read all you want faster with Reedy for Google Chrome!",
"version": "2.1.1",
"default_locale": "en",
"offline_enabled": true,
"content_scripts": [
{
"matches": ["*://*/*", "file:///*"],
"css": ["css/content/content.css"],
"js": [
"js/application.js",
"js/content/Parser.js",
"js/content/Sequencer.js",
"js/content/View.js",
"js/content/Reader.js",
"js/content/ContentSelector.js",
"js/content/content.js"
],
"all_frames": true,
"run_at": "document_end"
}
],
"web_accessible_resources": [
"img/*"
],
"permissions": [
"storage",
"activeTab",
"contextMenus",
"fontSettings",
"<all_urls>"
],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"browser_action": {
"default_icon": {
"19": "icons/icon19.png",
"38": "icons/icon38.png"
},
"default_title": "Reedy",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"js/application.js",
"js/ColorPicker.js",
"js/Checkbox.js",
"js/Range.js",
"js/Tabs.js",
"js/background/analytics.js",
"js/background/background.js"
],
"persistent": false
}
}