forked from cyanheads/claude-sidebar-modifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
42 lines (42 loc) · 1 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
{
"manifest_version": 2,
"name": "Claude Sidebar Modifier",
"version": "1.4.0",
"description": "Modify the Claude.ai sidebar width and disable behavior",
"author": "Casey Hand",
"homepage_url": "https://github.com/cyanheads/claude-sidebar-modifier",
"permissions": [
"activeTab",
"storage",
"https://*.claude.ai/*",
"tabs"
],
"content_scripts": [
{
"matches": ["https://*.claude.ai/*"],
"js": ["sidebar-disable.js"],
"css": ["sidebar-disable.css"],
"run_at": "document_start"
}
],
"background": {
"scripts": ["background.js"],
"persistent": true
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"48": "assets/icon-48.png",
"96": "assets/icon-96.png"
}
},
"icons": {
"48": "assets/icon-48.png",
"96": "assets/icon-96.png"
},
"web_accessible_resources": [
"sidebar-disable.js",
"sidebar-disable.css"
],
"content_security_policy": "script-src 'self'; object-src 'self'"
}