forked from 1MindLabs/mivro-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
44 lines (44 loc) · 1.22 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
42
43
44
{
"name": "Mivro",
"description": "Web extension for personalized product profiling",
"version": "0.5.5",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup/popup.html"
},
"icons": {
"16": "assets/ext-icons/icon-16.png",
"32": "assets/ext-icons/icon-32.png",
"48": "assets/ext-icons/icon-48.png",
"64": "assets/ext-icons/icon-64.png",
"128": "assets/ext-icons/icon-128.png",
"256": "assets/ext-icons/icon-256.png",
"512": "assets/ext-icons/icon-512.png"
},
"content_scripts": [
{
"matches": [
"https://www.bigbasket.com/pd/*",
"https://www.blinkit.com/prn/*",
"https://www.swiggy.com/instamart/item/*",
"https://www.zeptonow.com/pn/*",
"https://www.jiomart.com/p/groceries/*",
"https://www.amazon.in/*/dp/*",
"https://www.flipkart.com/*"
],
"css": ["content-scripts/content-script.css"],
"js": ["content-scripts/content-script.js"]
}
],
"permissions": ["activeTab"],
"host_permissions": ["http://127.0.0.1:5000/"],
"web_accessible_resources": [
{
"resources": ["*.js", "*.png"],
"matches": ["<all_urls>"]
}
]
}