-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
41 lines (41 loc) · 1.07 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
38
39
40
41
{
"name": "Price finder",
"description": "Find prices.",
"version": "0.0.1",
"manifest_version": 3,
"options_page": "html/options.html",
"background": {
"service_worker" : "js/service-workers/background.js"
},
"action": {
"default_popup": "html/popup.html"
},
"permissions": [
"contextMenus",
"activeTab",
"storage",
"scripting"
],
"content_scripts": [
{
"run_at": "document_idle",
"matches": [
"https://*.ebay.com/*",
"https://*.amazon.com/*",
"https://*.bestbuy.com/*",
"https://*.walmart.com/*",
"https://*.newegg.com/*"
],
"js": [
"/js/content-scripts/content-script.js",
"/js/content-scripts/read-store-element.js"
]
}
],
"web_accessible_resources": [
{
"resources": ["/resources/*"],
"matches": ["https://web-accessible-resources-2.glitch.me/*"]
}
]
}