Files
claude-artifact-scraper/manifest.json
2025-07-17 12:37:23 -04:00

33 lines
682 B
JSON

{
"manifest_version": 2,
"name": "Claude Artifact Collector",
"version": "1.0",
"description": "Package up all the artifacts in a chat or project for deployment",
"permissions": [
"activeTab"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"browser_action": {
"default_title": "Claude Artifact Collector",
"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"
}
}