-
Notifications
You must be signed in to change notification settings - Fork 398
/
Copy pathmanifest.json
47 lines (47 loc) · 1.17 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
{
"manifest_version": 2,
"name": "UI Recorder",
"description": "UI Recorder for chrome",
"version": "1.0.0",
"browser_action": {
"default_icon": "img/icon.png",
"default_title": "UI Recorder"
},
"content_scripts": [{
"matches": [ "http://*/*", "https://*/*" ],
"all_frames": true,
"match_about_blank": true,
"run_at": "document_start",
"js": [
"js/foreground.js",
"js/jquery-3.4.1.min.js"
]
}],
"web_accessible_resources": [
"js/foreground.js",
"img/hover.png",
"img/sleep.png",
"img/expect.png",
"img/jump.png",
"img/end.png",
"img/ok.png",
"img/cancel.png",
"img/vars.png",
"img/success.png",
"img/fail.png",
"img/text.png",
"img/alert.png",
"img/back.png",
"img/jscode.png"
],
"background": {
"scripts": [ "js/background.js" ]
},
"icons": {
"16": "img/icon.png",
"64": "img/icon-64.png",
"128": "img/icon-128.png"
},
"permissions": ["tabs", "webNavigation", "\u003Call_urls\u003E", "notifications"],
"content_security_policy": "script-src 'self' 'unsafe-eval';"
}