forked from adyen-examples/adyen-testcards-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
29 lines (28 loc) · 815 Bytes
/
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
{
"manifest_version": 3,
"name": "Adyen Test Cards",
"version": "0.0.4",
"description": "Copy and prefill Adyen test card numbers and other payment methods with a single click.",
"action": {
"default_title": "Adyen Test Cards"
},
"icons": {
"16": "images/logo-adyen-A.png",
"48": "images/logo-adyen-A.png",
"128": "images/logo-adyen-A.png"
},
"background": {
"service_worker": "service-worker.js"
},
"side_panel": {
"default_path": "panel.html"
},
"permissions": ["sidePanel", "scripting", "activeTab", "storage"],
"host_permissions": ["https://*/*", "http://*/*"],
"web_accessible_resources": [
{
"resources": [ "/data/*.json" ],
"matches": [ "https://*/*", "http://*/*" ]
}
]
}