forked from Kenshin/simpread
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
49 lines (49 loc) · 1.5 KB
/
manifest.json
File metadata and controls
49 lines (49 loc) · 1.5 KB
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
{
"name" : "__MSG_extension_name__",
"default_locale" : "en",
"version" : "1.1.2",
"short_name" : "SimpRead",
"description" : "__MSG_extension_desc__",
"homepage_url" : "http://ksria.com/simpread",
"author" : "Kenshin Wang <kenshin@ksria.com>",
"icons" : {
"16" : "assets/images/icon16.png",
"48" : "assets/images/icon48.png",
"128" : "assets/images/icon128.png"
},
"permissions" : [
"contextMenus",
"tabs",
"storage",
"tts"
],
"background": {
"scripts" : [ "/bundle/common.js", "/bundle/background.js" ]
},
"content_scripts" : [
{
"matches" : [ "http://*/*", "https://*/*", "file:///*/*.txt" ],
"exclude_matches": [ "http://localhost/*", "https://simpread.herokuapp.com/view/*" ],
"js" : [
"/bundle/common.js",
"/bundle/vendors.js",
"/bundle/contentscripts.js"
],
"run_at" : "document_end"
}
],
"page_action" : {
"default_icon" : {
"16" : "assets/images/icon16.png"
}
},
"options_page" : "options/options.html",
"web_accessible_resources": [
"/assets/images/*",
"website_list.json"
],
"offline_enabled" : true,
"update_url" : "https://clients2.google.com/service/update2/crx",
"content_security_policy" : "script-src 'self' https://www.google-analytics.com; object-src 'self'",
"manifest_version": 2
}