-
Notifications
You must be signed in to change notification settings - Fork 10
/
manifest.json
83 lines (75 loc) · 2.42 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
{
"name": "JsTracker",
"version": "1.0",
"manifest_version": 2,
"description": "Js执行情况覆盖率检测",
"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-48.png",
"default_title": "JsTracker"
},
"background": {
"persistent": true,
"scripts": [
"static/js/fe-background.js"
]
},
"permissions": [
"\u003Call_urls\u003E"
],
"web_accessible_resources": [
"static/img/fe-16.png",
"static/img/fe-48.png",
"static/img/fe-128.png",
"static/css/js-tracker.css",
"static/js/tracker/tracker.js",
"static/js/tracker/util.js",
"static/js/tracker/path.js",
"static/js/tracker/promise.js",
"static/js/tracker/event.js",
"static/js/tracker/status-pool.js",
"static/js/tracker/plugin.js",
"static/js/tracker/code.js",
"static/js/tracker/combocodegen.js",
"static/js/tracker/decorate.js",
"static/js/tracker/token.js",
"static/js/tracker/view.js",
"static/js/tracker/general.js",
"static/js/tracker/watch.js",
"static/js/tracker/inject.js"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*",
"file://*/*"
],
"js": [
"static/js/tracker/tracker.js",
"static/js/tracker/util.js",
"static/js/tracker/path.js",
"static/js/tracker/promise.js",
"static/js/tracker/event.js",
"static/js/tracker/status-pool.js",
"static/js/tracker/plugin.js",
"static/js/tracker/code.js",
"static/js/tracker/combocodegen.js",
"static/js/tracker/decorate.js",
"static/js/tracker/token.js",
"static/js/tracker/view.js",
"static/js/tracker/general.js",
"static/js/tracker/watch.js",
"static/js/tracker/main.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"homepage_url": "https://www.baidufe.com/fehelper"
}