forked from zxlie/FeHelper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
94 lines (82 loc) · 2.81 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "WEB前端助手(FeHelper)",
"version": "5.2",
"manifest_version": 2,
"default_locale": "zh_CN",
"description": "FE助手:包括字符串编解码、代码压缩、美化、JSON格式化、正则表达式、时间转换工具、二维码生成器、编码规范检测、页面性能检测、栅格检测等",
"icons": {
"16": "static/img/fe-16.png",
"48": "static/img/fe-48.png",
"128": "static/img/fe-128.png"
},
"browser_action": {
"default_icon" : "static/img/fe-16.png",
"default_title" : "WEB前端助手",
"default_popup" : "template/fehelper_popup.html"
},
"background": {
"persistent": false,
"page": "template/fehelper_background.html"
},
"options_page": "template/fehelper_options.html",
"permissions": [
"tabs",
"contextMenus",
"cookies",
"notifications",
"alarms",
"webNavigation",
"\u003Call_urls\u003E"
],
"web_accessible_resources": [
"static/img/43.png",
"static/img/baidufe_bj.png",
"static/img/baidufe_bj.gif",
"static/img/grid.png",
"static/img/fe-18.png",
"static/img/fe-48.png",
"static/img/fe-128.png",
"static/img/pbar-ani.gif",
"static/img/ui-icons_228ef1_256x240.png",
"static/css/fe-helper.css",
"static/css/fe-jsonformat.css",
"static/vendor/jquery-ui-1.8/css/jquery-ui-1.8.16.custom.hot_datauri.css"
],
"content_scripts": [{
"matches":["http://*/*","https://*/*","file://*/*"],
"js":[
"static/js/core/jquery-1.5.min.js",
"static/vendor/jquery-ui-1.8/js/jquery-ui-1.8.11.custom.min.js",
"static/js/core/core.js",
"static/js/core/fe-const.js",
"static/js/fe-option.js",
"static/js/fcp/fcp-fl.js",
"static/js/fcp/css/fcp-css-analytic.js",
"static/js/fcp/css/fcp-css.js",
"static/js/fcp/html/fcp-html-analytic.js",
"static/js/fcp/html/fcp-html-doctype.js",
"static/js/fcp/html/fcp-html.js",
"static/js/fcp/js/fcp-js.js",
"static/js/fcp/fcp-tabs.js",
"static/js/fcp/fcp-main.js",
"static/js/grid/grid-main.js",
"static/js/fe-helper.js",
"static/js/notification/fe-notification.js",
"static/js/wpo/fe-calc-wpo.js",
"static/js/jsonformat/json-format-dealer.js",
"static/js/jsonformat/json-format-ent.js",
"static/js/jsonformat/contentscript-jsonformat.js"
],
"run_at":"document_end",
"all_frames":false
},{
"matches":["http://*.baidufe.com/fehelper/*","http://*.baidufe.com/fehelper"],
"js":[
"static/js/fe-contentscript-fehelper.js"
],
"run_at":"document_end",
"all_frames":false
}],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com 'unsafe-eval'; object-src 'self'",
"homepage_url": "http://www.baidufe.com/fehelper"
}