-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
56 lines (53 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
51
52
53
54
55
56
{
"manifest_version": 2,
"name": "FYP",
"description": "FYP",
"version": "1.0",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"background":{
"page": "background.html"
},
"content_scripts": [
{
"matches":[
"http://*.cnn.com/*",
"http://*.chinadaily.com.cn/*",
"http://*.bbc.com/*",
"http://*/*",
"https://*/*"
],
"css": [
//"bootstrap/css/bootstrap.min.css",
//"bootstrap/css/bootstrap-theme.min.css",
//"slider/css/slider.css",
//"main.css",
"gt_popup_css_compiled.css",
//"gt_options_css_compiled.css",
"gt_bubble_gss.css"
],
"js":[
"jquery-2.1.1.min.js",
"bootstrap/js/bootstrap.min.js",
//"slider/js/bootstrap-slider.js",
"contentscript.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",
"angular/*",
"bootstrap/*",
"slider/*",
"icons/*"
],
"permissions": [
"tabs","<all_urls>","identity","storage","http://*/*"
]
}