-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
31 lines (31 loc) · 968 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
{
"name": "Dumpster Duck",
"version": "1.0.0",
"permissions": [
"tabs",
"activeTab",
"storage"
],
"background": {
"service_worker": "background.js"
},
"description": "search where to put your waste quickly with a snap of a pic",
"manifest_version": 3,
"author": "Cindy Hua, Mikayla Morrison, Argel Hunos",
"action": {
"default_popup": "index.html",
"default_title": "Dumpster Duck",
"default_icon": {
"16": "Components/images/Dumpster Duck (Transparent, 16x16).png",
"48": "Components/images/Dumpster Duck (Transparent, 48x48).png",
"128": "Components/images/dumpsterduck128.png"
}
},
"content_scripts": [
{
"matches": ["https://www.torontomu.ca/sustainability/zero-waste/recycling-waste/waste-wizard/*"],
"js": ["content.js"],
"run_at": "document_idle"
}
]
}