-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
38 lines (33 loc) · 940 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
37
38
{
"manifest_version": 3,
"name": "Vidusi",
"version": "1.0",
"description": "Buy without Barriers",
"action":{
"default_popup": "popup.html"
},
"permissions": [
"storage",
"activeTab",
"tabs",
"webNavigation"
],
"background": {
"service_worker": "./scripts/background.js"
},
"content_scripts": [
{
"matches": ["https://www.amazon.com/*","https://www.amazon.in/*"],
"js": ["./scripts/injected.js"],
"css": ["./style/injected.css"],
"run_at": "document_start"
}
],
"host_permissions":["https://dhruva-api.bhashini.gov.in/services/inference/pipeline"],
"web_accessible_resources": [
{
"resources": [ "./assets/loader.gif","assets/loader.gif","..assets/loader.gif","loader.gif"],
"matches": ["https://www.amazon.com/*" , "https://www.amazon.in/*"]
}
]
}