-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathmanifest.json
More file actions
57 lines (57 loc) · 1.4 KB
/
manifest.json
File metadata and controls
57 lines (57 loc) · 1.4 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
54
55
56
57
{
"$schema": "https://json.schemastore.org/chrome-manifest",
"name": "Web Monetization",
"version": "0.11.0.0",
"manifest_version": 3,
"minimum_chrome_version": "110.0",
"description": "__MSG_appDescription__",
"icons": {
"32": "assets/icons/32x32/default.png",
"48": "assets/icons/48x48/default.png",
"128": "assets/icons/128x128/default.png"
},
"default_locale": "en",
"content_scripts": [
{
"matches": ["https://*/*", "http://localhost/*", "http://127.0.0.1/*"],
"js": ["content/content.js"],
"run_at": "document_start",
"all_frames": true
}
],
"background": {
"service_worker": "background/background.js"
},
"permissions": ["tabs", "storage", "alarms", "scripting"],
"action": {
"default_title": "Web Monetization",
"default_popup": "popup/index.html"
},
"web_accessible_resources": [
{
"resources": [
"polyfill/*",
"pages/progress-connect/*",
"assets/fonts/**/*"
],
"matches": ["<all_urls>"]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"host_permissions": [
"https://*/*",
"http://localhost/*",
"http://127.0.0.1/*"
],
"browser_specific_settings": {
"gecko": {
"strict_min_version": "110.0",
"id": "tech@interledger.com"
},
"safari": {
"strict_min_version": "16.4"
}
}
}