-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
36 lines (35 loc) · 978 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
{
"manifest_version": 3,
"name": "ReviewReliabilityChecker",
"version": "1.0",
"description": "Analyze the integrity of reviews on Google Maps using OpenAI's language model",
"permissions": [
"activeTab",
"webNavigation",
"tabs"
],
"background": {
"service_worker": "background_script.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"*://*.google.com/maps/*",
"*://*.google.ca/maps/*",
"*://*.google.co.uk/maps/*",
"*://*.google.com.au/maps/*",
"*://*.google.co.in/maps/*",
"*://*.google.co.jp/maps/*",
"*://*.google.de/maps/*",
"*://*.google.fr/maps/*",
"*://*.google.it/maps/*",
"*://*.google.es/maps/*",
"*://*.google.pt/maps/*",
"*://*.google.ru/maps/*",
"*://*.google.com.br/maps/*"
],
"js": ["content_script.js"]
}
]
}