-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
28 lines (27 loc) · 772 Bytes
/
Copy pathmanifest.json
File metadata and controls
28 lines (27 loc) · 772 Bytes
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
{
"manifest_version": 3,
"name": "Vine++",
"version": "0.4",
"description": "A little helper extension for Amazon Vine users",
"author": "Daniel Glazman",
"icons": {
"128": "128.png"
},
"permissions": ["storage", "webNavigation"],
"background": {
"service_worker": "background.js"
},
"action": {},
"content_scripts": [
{
"matches": [
"https://www.amazon.fr/vine/vine-items*"
, "https://www.amazon.com/vine/vine-items*"
, "https://www.amazon.de/vine/vine-items*"
, "https://www.amazon.es/vine/vine-items*"
, "https://www.amazon.co.uk/vine/vine-items*"
],
"js": ["content.js"]
}
]
}