forked from kanghj/wordnews_chrome_extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
68 lines (63 loc) · 2.12 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
65
66
67
68
{
"manifest_version": 2,
"name": "WordNews",
"description": "Learn a second language by picking up new vocabulary in news articles. Answer MCQ questions based on your learning history.",
"version": "1.3180",
"browser_action": {
"default_icon": "images/logo.png",
"default_popup": "popup.html"
},
"background":{
"scripts": ["jquery-2.1.1.min.js", "common.js", "usersettings.js", "login.js", "background.js"]
},
"content_scripts": [
{
"matches":[
"http://*.cnn.com/*",
"http://*.chinadaily.com.cn/*",
"http://*.bbc.com/*"
],
"css": [
"gt_popup_css_compiled.css",
"gt_bubble_gss.css",
"slider/css/slider.css",
"bootstrap/css/bootstrap.min.css",
"bootstrap/css/bootstrap-formhelpers.min.css",
"content-share.css"
],
"js":[
"jquery-2.1.1.min.js",
"slider/js/bootstrap-slider.js",
"bootstrap/js/bootstrap-formhelpers.min.js",
"bootstrap/js/bootstrap.min.js",
"notifyjs/notify.min.js",
"common.js",
"content-share.js",
"eventLogger.js",
"annotate.js",
"learn.js"
],
"html":["bing.html"],
"run_at": "document_end",
"all_frames": false
}
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"web_accessible_resources":[
"background.html",
"bootstrap/*/*",
"slider/*",
"icons/*",
"images/*"
],
"permissions": [
"tabs","<all_urls>","identity","storage","http://*/*", "activeTab","cookies"
],
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqSbvqqeWKmBsWm2SE6nZZ8FIjQpL24G3nnZ9AeH1Qsedenku2VOR2IIy8SKsyfxxlbLiBbTpzrU97u2E01jDKLHxEZ7uWxZPoiNvN1MoIXkSaJQJz/RTcAd99uxM4FyvuSL9FwxWP/2q60+8zFQ9BrvpFImXqQcyueC5Bc4Gzx6pq8Qhig5pszZ32qVaQY67BJiGnitgCT9RKIHMtMDxgl4Q2dB10DBAwaIajFW+JM/VRF/Onr+vC0xEyht4l3yjOKr8VOYLt67pWeetCg39VNvz4QwfPgmcr2I72OMY1M/Rg4VlmryvYnOHtM3Vxu544iI8Z4l947YgqNHySw1h4wIDAQAB",
"oauth2": {
"client_id": "373169587674-1omrc84atsg3vs496ign254e9s4th19q.apps.googleusercontent.com",
"scopes": [
"openid", "email", "profile"
]
}
}