-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
44 lines (44 loc) · 1.21 KB
/
manifest.json
File metadata and controls
44 lines (44 loc) · 1.21 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
{
"manifest_version": 3.1,
"name": "AI Chat Sidebar",
"version": "3.0",
"description": "View and navigate through all your chat prompts in a beautiful sidebar - works with Gemini and ChatGPT",
"icons": {
"512": "public/assets/icon.png"
},
"content_scripts": [
{
"matches": ["https://gemini.google.com/*"],
"js": [
"src/shared/utils.js",
"src/gemini/modules/sidebar.js",
"src/gemini/modules/dom.js",
"src/gemini/modules/navigation.js",
"src/gemini/modules/main.js"
],
"css": ["src/gemini/sidebar.css"],
"run_at": "document_end"
},
{
"matches": ["https://chatgpt.com/*"],
"js": [
"src/shared/utils.js",
"src/chatgpt/modules/sidebar.js",
"src/chatgpt/modules/dom.js",
"src/chatgpt/modules/navigation.js",
"src/chatgpt/modules/main.js"
],
"css": ["src/chatgpt/sidebar.css"],
"run_at": "document_end"
}
],
"browser_specific_settings": {
"gecko": {
"id": "ai-prompt-sidebar@deepanshu.com",
"data_collection_permissions": {
"required": ["none"]
},
"data_collection_description": "This add-on does not collect any user data."
}
}
}