-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest-firefox.json
More file actions
53 lines (53 loc) · 1.2 KB
/
manifest-firefox.json
File metadata and controls
53 lines (53 loc) · 1.2 KB
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
{
"browser_specific_settings": {
"gecko": {
"id": "dlpro@machineonamission.me"
}
},
"manifest_version": 3,
"name": "dlPro",
"description": "yt-dlp, the most powerful web video downloader, now fully embedded in your browser.",
"version": "1.1.1",
"options_page": "/pages/settings/index.html",
"options_ui": {
"page": "/pages/settings/index.html",
"open_in_tab": true
},
"action": {
"default_title": "dlPro: click to download current page"
},
"permissions": [
"scripting",
"cookies",
"storage"
],
"host_permissions": [
"*://*/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
},
"web_accessible_resources": [
{
"resources": [
"core/content/*",
"logo/*",
"core/iframe/iframe.html",
"core/sandbox/sandbox.html"
],
"matches": [
"<all_urls>"
]
}
],
"background": {
"scripts": ["background.js"]
},
"icons": {
"16": "logo/shadow/logo-16.png",
"32": "logo/shadow/logo-32.png",
"48": "logo/shadow/logo-48.png",
"64": "logo/shadow/logo-64.png",
"128": "logo/shadow/logo-128.png"
}
}