-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
28 lines (28 loc) · 852 Bytes
/
Copy pathmanifest.json
File metadata and controls
28 lines (28 loc) · 852 Bytes
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
{
"manifest_version": 3,
"name": "Google GPT - Enhanced",
"version": "0.1.0",
"description": "An advanced Chrome extension integrating GPT functionality for Google searches with features like floating summaries, voice input, and user customization.",
"content_scripts": [
{
"matches": ["https://www.google.com/*"],
"js": ["content_script.js", "summary_ui.js"],
"css": ["styles.css"]
}
],
"permissions": [
"activeTab",
"storage",
"scripting"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html"
},
"host_permissions": ["https://api.openai.com/*"],
"content_security_policy": {
"script-src": "'self' https://api.openai.com; object-src 'self'"
}
}