-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
50 lines (50 loc) · 1021 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"manifest_version": 3,
"name": "SampleWizard",
"version": "2.1.3",
"description": "Sample any audio on the web with a click! Record and download audio directly from your browser.",
"action": {
"default_popup": "index.html"
},
"content_scripts": [
{
"matches": ["https://extensionpay.com/*"],
"js": ["ExtPay.js"],
"run_at": "document_start"
}
],
"icons": {
"48": "hat48.png",
"128": "witch-hat.png"
},
"background": {
"service_worker": "background.js",
"scripts": ["Extpay.js"],
"type": "module"
},
"web_accessible_resources": [
{
"resources": ["offscreen.html", "offscreen.js"],
"matches": ["<all_urls>"]
}
],
"permissions": [
"activeTab",
"tabs",
"tabCapture",
"offscreen",
"unlimitedStorage",
"storage",
"downloads"
],
"host_permissions": ["https://extensionpay.com/*"],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y"
},
"description": "Open the extension popup"
}
}
}