-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
70 lines (70 loc) · 2.11 KB
/
Copy pathmanifest.json
File metadata and controls
70 lines (70 loc) · 2.11 KB
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
63
64
65
66
67
68
69
70
{
"manifest_version": 3,
"name": "Web API Extension",
"version": "0.1.2",
"description": "Operate ACI's Web API through WebMCP-published tools, code mode execution, and a typed virtual SDK.",
"minimum_chrome_version": "146",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArbApZb9fkk4ropiEMEc2p20DWFantqfBbmFTYYfixolWJ/xx5hZnsPyNV1v8bzpT/TQw0iet/Gev3F55vb/HYXOPn4+ZBnPvdJ2vKt6gCHn9HRFlVNoV1r+zNhC2H9J7FQ8PKtQ0coTGWex1gVTzSP0HQMQrw7C1usr6PZyjG3sXAi/fZ86HTqkF9l9UDP3lK8jg0jRevmWKc6ze+bSNzQ9IR2MXXSpOrUtjz2vzPb62+LWC8Gz73tmOe9XsN8/EXRSD7fsgfQ9qLe7b6ZvQBE903Mu/LEphvb+cHIS4VnWqci1k1cnbNoxmh5n7jeRAjJjETi9hFmLBl0wruqncMQIDAQAB",
"permissions": [
"offscreen",
"sidePanel",
"storage",
"scripting",
"tabs"
],
"host_permissions": [
"https://*.oppwa.com/*",
"https://ctpe.info/*",
"https://*.ctpe.info/*",
"https://prtpe.com/*",
"https://*.prtpe.com/*",
"https://generativelanguage.googleapis.com/*",
"https://mobot.laetzer.com/*"
],
"background": {
"service_worker": "background/service-worker.ts"
},
"content_scripts": [
{
"matches": [
"https://*.oppwa.com/*",
"https://ctpe.info/*",
"https://*.ctpe.info/*",
"https://prtpe.com/*",
"https://*.prtpe.com/*"
],
"js": ["content/bridge.ts"],
"run_at": "document_idle"
},
{
"matches": [
"https://*.oppwa.com/*",
"https://ctpe.info/*",
"https://*.ctpe.info/*",
"https://prtpe.com/*",
"https://*.prtpe.com/*"
],
"js": ["content/context-scraper.ts"],
"run_at": "document_idle",
"all_frames": true
}
],
"side_panel": {
"default_path": "sidepanel/index.html"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';",
"sandbox": "sandbox allow-scripts; script-src 'self' 'unsafe-eval'; object-src 'self';"
},
"sandbox": {
"pages": ["sandbox/sandbox.html"]
},
"action": {
"default_title": "Web API Extension"
},
"icons": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
}
}