Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "ClaudeKarma \u2014 Claude Usage Tracker",
"version": "1.0.0",
"description": "Track your Claude AI usage limits at a glance. See session and weekly limits with a beautiful toolbar icon.",
"author": "Jean-R\u00e9mi Larcelet-Prost",
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png"
},
"default_title": "ClaudeKarma"
},
"background": {
"service_worker": "background\/service-worker.js",
"type": "module"
},
"permissions": [
"storage",
"alarms"
],
"host_permissions": [
"https:\/\/claude.ai\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/claude.ai\/settings\/usage*"
],
"js": [
"content\/content.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"icons\/*",
"welcome\/*",
"tips\/*"
],
"matches": [
"<all_urls>"
]
}
],
"default_locale": "en",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "109.0"
}
}
}