-
Notifications
You must be signed in to change notification settings - Fork 9
/
firefox_manifest.json
executable file
·62 lines (57 loc) · 1.32 KB
/
firefox_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
{
"background": {
"scripts": [
"background.js"
]
},
"action": {
"default_icon": "icons/icon_32.png",
"default_popup": "popup/popup.html"
},
"content_scripts": [
{
"all_frames": true,
"js": [
"contentScripts/content.js"
],
"css": [
"contentScripts/modal.css"
],
"matches": [
"https://*/*",
"http://*/*",
"file://*/*",
"ftp://*/*"
],
"run_at": "document_start",
"match_about_blank":true
}
],
"description": "Persepolis Download Manager Integration extension replaces default download manager of FireFox by Persepolis Download Manager.",
"homepage_url": "https://github.com/persepolisdm/Persepolis-WebExtension",
"icons": {
"32": "icons/icon_32.png",
"48": "icons/icon_48.png",
"128": "icons/icon_128.png"
},
"manifest_version": 3,
"name": "Persepolis Download Manager Integration",
"short_name": "Persepolis",
"permissions": [
"<all_urls>",
"nativeMessaging",
"contextMenus",
"downloads",
"cookies",
"storage",
"scripting"
],
"version": "4.0.0",
"host_permissions": ["*://*/"],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "50.0"
}
}
}