-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
37 lines (37 loc) · 1.03 KB
/
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
{
"manifest_version": 3,
"name": "Movies Watchlist",
"description": "Keep a list of movies you like, want to see and group them by your preferences.",
"version": "1.0",
"action": {},
"background":{
"service_worker": "./background.js"
},
"content_scripts": [
{
"js": ["./content_scripts/ContentScript.js", "./content_scripts/content.js"],
"matches": ["https://www.google.com/search*"]
},
{
"js": ["./content_scripts/imdb.js"],
"matches": ["https://www.imdb.com/*"]
}
],
"permissions":[
"identity",
"storage",
"unlimitedStorage",
"tabs"
],
"host_permissions": ["https://www.imdb.com/*"],
"web_accessible_resources":[
{
"resources": ["quickActionsGoogle.html", "img/img2.png"],
"matches": ["https://www.google.com/*"]
}
],
"icons":{
"16": "img/img2.png",
"48": "img/img2.png"
}
}