-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
42 lines (42 loc) · 981 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
{
"name": "OmniGrub",
"version": "0.5",
"description": "OmniGrub helps you compare DoorDash's reviews with FourSquare's and Yelp's without leaving the DoorDash restaurant page.",
"manifest_version": 3,
"icons": {
"128": "icon.png"
},
"content_scripts": [
{
"css": ["style.css"],
"js": ["action.js"],
"matches": ["https://*.doordash.com/store*"]
}
],
"host_permissions": ["https://*/store*"],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"small_1_half@3x.png",
"small_2.5.png",
"yelp-logo.png",
"small_0.png",
"small_1.png",
"small_1.5.png",
"small_2.png",
"small_3.png",
"small_3.5.png",
"small_4.png",
"small_4.5.png",
"small_5.png",
"external.png",
"googleLogo.png",
"fourlogo.jpeg"
],
"matches": ["<all_urls>"]
}
]
}