-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
49 lines (49 loc) · 1.21 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
{
"name": "script",
"manifest_version": 3,
"version": "0.1",
"background": {
"service_worker": "background.js",
"type": "module"
},
"host_permissions": [
"<all_urls>"
],
"permissions": [
"activeTab",
"storage",
"pageCapture",
"tabs",
"downloads",
"history",
"scripting"
],
"action": {
"default_title": "Settings",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"all_frames": false,
"run_at": "document_start",
"css": ["float-loading.css"],
"js": ["loading.js"]
},
{
"matches": ["<all_urls>"],
"all_frames": false,
"run_at" : "document_end",
"css": ["float-window.css", "third-party/simplified-boostrap-3.4.1.min.css"],
"js": [
"third-party/jquery-3.2.1.min.js",
"third-party/bootstrap-3.4.1.min.js",
"recoder-popper.js"
]
}
],
"externally_connectable": {
"matches": ["<all_urls>"],
"accepts_tls_channel_id": false
}
}