forked from shaka-project/eme_logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
50 lines (50 loc) · 1.01 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
{
"name": "EME Call and Event Logger",
"short_name": "EME Logger",
"version": "3.4.0",
"manifest_version": 3,
"description": "Logs all Encrypted Media Extensions (EME) method calls and events.",
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*",
"file://*"
],
"js": [
"content-script.js"
],
"all_frames": true,
"run_at": "document_start"
}
],
"icons": {
"22": "icons/EME_logo_22.png",
"32": "icons/EME_logo_32.png",
"48": "icons/EME_logo_48.png",
"96": "icons/EME_logo_96.png",
"128": "icons/EME_logo_128.png"
},
"background": {
"service_worker": "service-worker.js",
"type": "module"
},
"action": {
"default_title": "EME Logger"
},
"web_accessible_resources": [
{
"resources": [
"trace-anything.js",
"eme-trace-config.js"
],
"matches": [
"<all_urls>"
],
"extension_ids": []
}
],
"permissions": [
"downloads"
]
}