-
Notifications
You must be signed in to change notification settings - Fork 9
/
chrome_manifest.json
executable file
·50 lines (50 loc) · 1.2 KB
/
chrome_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
{
"background": {
"service_worker": "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 Google Chrome 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,
"minimum_chrome_version": "19.0",
"name": "Persepolis Download Manager Integration",
"short_name": "Persepolis",
"offline_enabled": true,
"permissions": [
"nativeMessaging",
"contextMenus",
"downloads",
"cookies",
"storage",
"scripting"
],
"host_permissions": ["*://*/"],
"version": "4.0.0"
}