This commit is contained in:
2025-07-11 10:01:18 -04:00
commit aae32c6370
11 changed files with 298 additions and 0 deletions

32
manifest.json Normal file
View File

@ -0,0 +1,32 @@
{
"manifest_version": 2,
"name": "Claude Download Helper",
"version": "1.0",
"description": "A simple Firefox extension with Claude's splat icon",
"permissions": [
"activeTab"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"browser_action": {
"default_title": "Claude Download Helper",
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
}
},
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
}
}