-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
43 lines (42 loc) · 1.02 KB
/
manifest.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
{
"name": "claude-artifact-enhancer",
"version": "0.6.5",
"manifest_version": 3,
"description": "Your Helpful Claude Artifact Enhancer",
"author": "南川 <mark@cs-magic.com>",
"permissions": [
],
"host_permissions": [
"https://claude.ai/*",
"https://www.claudeusercontent.com/*",
"https://api.claude.ai/*"
],
"icons": {
"16": "assets/logo_128x128.png",
"48": "assets/logo_128x128.png",
"128": "assets/logo_128x128.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://claude.ai/*"],
"js": ["main.js", "vendors.js", "runtime.js"]
},
{
"matches": ["https://www.claudeusercontent.com/*"],
"js": ["iframe.js", "vendors.js", "runtime.js"],
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": ["images/*"],
"matches": ["<all_urls>"]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
}
}