-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
39 lines (39 loc) · 1.07 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
{
"name": "AI Wattch",
"description": "AI Wattch is a Chrome extension that estimates and displays carbon emissions from your ChatGPT conversations.",
"version": "1.0.0",
"manifest_version": 3,
"action": {
"default_popup": "src/popup.html",
"default_icon": {
"16": "assets/icons/icon16.png",
"32": "assets/icons/icon32.png",
"64": "assets/icons/icon64.png",
"128": "assets/icons/icon128.png"
}
},
"icons": {
"16": "assets/icons/icon16.png",
"32": "assets/icons/icon32.png",
"64": "assets/icons/icon64.png",
"128": "assets/icons/icon128.png"
},
"content_scripts": [
{
"run_at" : "document_idle",
"js": ["src/content.js"],
"matches": ["https://chatgpt.com/*"]
}
],
"privacy_policy": "https://github.com/AIWattch/browser-extension/blob/master/PRIVACY.md",
"web_accessible_resources": [{
"matches": ["<all_urls>"],
"resources": ["assets/*", "src/how-does-it-work.html", "src/admin.*"]
}],
"permissions": [
"storage"
],
"host_permissions": [
"https://chatgpt.com/*"
]
}