-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
36 lines (36 loc) · 898 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
{
"name": "Heureka Reviews",
"description": "Adds user reviews info, sorting and filtering into product list.",
"homepage_url": "https://github.com/llagerlof/fresh-chrome-extension",
"version": "0.4.1",
"manifest_version": 3,
"action": {
"default_title": "execute.js will run (watch the Chrome DevTools' console)"
},
"content_scripts": [
{
"run_at" : "document_start",
"js": ["src/before.js"],
"matches": [
"https://*.heureka.cz/*",
"https://*.heureka.sk/*"
]
},
{
"run_at" : "document_idle",
"js": ["src/jquery.js", "src/after.js"],
"matches": [
"https://*.heureka.cz/*",
"https://*.heureka.sk/*"
]
}
],
"background": {
"service_worker": "src/background.js"
},
"permissions": [],
"host_permissions": [
"https://*.heureka.cz/*",
"https://*.heureka.sk/*"
]
}