-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
69 lines (69 loc) · 1.6 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"manifest_version": 3,
"name": "Seedr",
"description": "Get Stuff Instantly -- Download and play it anywhere :-)",
"version": "1.0.1",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqgZmjeOdp8l28WluN4YxGEi2dCCb+ktKKS9fSDrUfh6lWfJsiW6OIP6YahPu1CK4ST87Hslmz2Kfhnn5/kiN1+WeEenu9gEZc6+NiU8ethOjtN+XqkiiRDji7amot1Gw0OrucSUAiLqBBWOVnS+KRChPiq3PlumdRnOX7PqL2PcoWQX6DV2n/eQy8/wN2BBGcz57qKxvfA/pbEqRNsBPQOhblGjmqd4bSE8SeIIBV48oiVCu1H3lB1PmRUNtGwGpAPcZx+d1sLEmSBaLYbaZpLsoydHb3YKFXAzH0EmWouawI9K8GerywE2BQwSFdoGV4wN/Lv4vx/OKRPB9HeoKpQIDAQAB",
"background": {
"service_worker": "background.js",
"scripts": [
"background.js"
],
"type": "module"
},
"permissions": [
"tabs",
"storage",
"contextMenus",
"downloads",
"activeTab",
"webRequest"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"web_accessible_resources": [
{
"resources": [
"images/*"
],
"matches": [
"*://*/*"
]
}
],
"externally_connectable": {
"matches": [
"*://*.seedr.cc/*"
]
},
"content_scripts": [
{
"js": [
"content.js"
],
"css": [
"content.css"
],
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_end",
"all_frames": true
}
],
"action": {
"default_icon": "favicon.png",
"default_popup": "popup.html"
},
"icons": {
"16": "favicon16.png",
"32": "favicon.png",
"128": "favicon128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}