-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest_firefox.json
67 lines (67 loc) · 1.22 KB
/
manifest_firefox.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
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
{
"manifest_version": 3,
"name": "Claude Usage Tracker",
"version": "3.3.1",
"description": "Helps you track your claude.ai usage caps based on tokens sent, and syncs across devices using firebase.",
"author": "lugia19",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"background": {
"scripts": [
"background.js"
],
"type": "module"
},
"content_scripts": [
{
"matches": [
"https://claude.ai/*"
],
"js": [
"lib/browser-polyfill.min.js",
"lib/o200k_base.js",
"ui.js"
]
}
],
"permissions": [
"storage",
"alarms",
"webRequest",
"webRequestBlocking",
"cookies",
"tabs",
"contextMenus"
],
"host_permissions": [
"*://claude.ai/*",
"https://raw.githubusercontent.com/*",
"https://api.anthropic.com/*"
],
"web_accessible_resources": [
{
"resources": [
"default-config.json",
"lib/browser-polyfill.min.js",
"lib/o200k_base.js",
"kofi-button.png",
"debug.html"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"512": "icon512.png",
"128": "icon128.png"
},
"action": {
"default_icon": "icon128.png",
"default_title": "Claude Usage Tracker - Donate"
},
"incognito": "not_allowed"
}