-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
47 lines (47 loc) · 1.03 KB
/
Copy pathmanifest.json
File metadata and controls
47 lines (47 loc) · 1.03 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
{
"manifest_version": 3,
"name": "Amazon Auto Disburse",
"version": "1.4.7",
"description": "Automatically requests Amazon disbursement every 24 hours",
"minimum_chrome_version": "111",
"permissions": [
"alarms",
"tabs",
"notifications",
"storage",
"debugger",
"webNavigation",
"scripting"
],
"optional_permissions": [
"webRequest",
"downloads"
],
"host_permissions": [
"https://sellercentral.amazon.com/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://sellercentral.amazon.com/payments/dashboard/index.html*"],
"js": ["dashboard.js"],
"run_at": "document_idle"
},
{
"matches": ["https://sellercentral.amazon.com/payments/disburse/details*"],
"js": ["disburse.js"],
"run_at": "document_idle"
}
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": "icon48.png"
}
}