-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
62 lines (62 loc) · 1.69 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "CSIT LLM Fraud Checker",
"version": "1.0",
"manifest_version": 3,
"description": "CSIT LLM Fraud Checker",
"permissions": [
"identity",
"contextMenus",
"background",
"notifications",
"storage",
"tabs",
"activeTab"
],
"host_permissions": [
"*://*.google.com/*",
"https://www.googleapis.com/*",
"https://*.googleusercontent.com/*",
"https://langchain-backend-k9yh.onrender.com/detect-fraud"
],
"background": {
"service_worker": "./background.js"
},
"icons": {
"16": "./img/icon16.png",
"32": "./img/icon32.png",
"48": "./img/icon48.png",
"128": "./img/icon128.png"
},
"action": {
"default_icon": {
"16": "./img/icon16.png",
"32": "./img/icon32.png",
"48": "./img/icon48.png",
"128": "./img/icon128.png"
},
"default_title": "LLM Fraud Checker for your Emails"
},
"content_scripts": [{
"all_frames": true,
"matches": ["<all_urls>"],
"js": ["./sidePanel.js"]
}],
"web_accessible_resources": [{
"resources": [
"*.html",
"*.css"
],
"matches": ["<all_urls>"]
}],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'",
"sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
},
"oauth2": {
"client_id": "184141298407-396pshlc9gdrpstp2bkkmkev0umb7igp.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/gmail.modify",
"https://mail.google.com/"
]
}
}