-
-
Notifications
You must be signed in to change notification settings - Fork 651
Expand file tree
/
Copy pathmanifest.dev.json
More file actions
executable file
·64 lines (64 loc) · 1.75 KB
/
Copy pathmanifest.dev.json
File metadata and controls
executable file
·64 lines (64 loc) · 1.75 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
{
"action": {
"default_icon": "public/dev-icon-32.png",
"default_popup": "src/pages/popup/index.html"
},
"icons": {
"128": "public/dev-icon-128.png"
},
"permissions": ["storage", "identity", "scripting", "alarms", "activeTab"],
"web_accessible_resources": [
{
"resources": [
"contentStyle.css",
"dev-icon-128.png",
"dev-icon-32.png",
"icon-32.png",
"icon-128.png",
"fetchInterceptor.js",
"claude-usage-observer.js",
"response-complete-observer.js",
"usage-observer.js",
"conversation-history-observer.js",
"prevent-auto-scroll.js",
"assets/*.js",
"assets/*.png"
],
"matches": ["<all_urls>"]
}
],
"content_scripts": [
{
"matches": [
"https://gemini.google.com/*",
"https://business.gemini.google/*",
"https://aistudio.google.com/*",
"https://aistudio.google.cn/*"
],
"js": ["src/pages/content/index.tsx"],
"css": ["contentStyle.css"]
},
{
"matches": ["https://gemini.google.com/*", "https://business.gemini.google/*"],
"js": ["src/pages/content/usageObserverLoader.ts"],
"run_at": "document_start"
}
],
"host_permissions": [
"https://gemini.google.com/*",
"https://business.gemini.google/*",
"https://aistudio.google.com/*",
"https://aistudio.google.cn/*",
"https://*.googleapis.com/*",
"https://accounts.google.com/*",
"https://*.googleusercontent.com/*",
"https://lh3.google.com/*",
"https://*.ggpht.com/*"
],
"optional_host_permissions": ["https://chatgpt.com/*", "<all_urls>"],
"background": {
"service_worker": "src/pages/background/index.ts",
"type": "module"
},
"version": "1.7.1"
}