-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
30 lines (30 loc) · 812 Bytes
/
manifest.json
File metadata and controls
30 lines (30 loc) · 812 Bytes
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
{
"manifest_version": 3,
"name": "Claude Project Folder Uploader",
"description": "Upload entire folders to Claude.ai projects with advanced file filtering and organization",
"version": "1.1.0",
"icons": {
"48": "icons/claude_app_icon.png"
},
"permissions": ["activeTab", "storage"],
"host_permissions": ["https://claude.ai/*"],
"content_scripts": [
{
"matches": ["https://claude.ai/project/*"],
"css": ["styles.css"],
"js": ["content.js"],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": ["icons/*"],
"matches": ["https://claude.ai/*"]
}
],
"author": "Radwan Susan",
"homepage_url": "https://github.com/RadwanSusan/Claude-Folder-Upload-Extension",
"minimum_chrome_version": "88",
"offline_enabled": true,
"short_name": "Claude Uploader"
}