forked from aiguicai/Cursor-Toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
68 lines (68 loc) · 1.74 KB
/
manifest.json
File metadata and controls
68 lines (68 loc) · 1.74 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"manifest_version": 3,
"name": "Cursor Toolbox",
"version": "1.1.2",
"description": "Cursor web AI chat extension",
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"action": {
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_popup": "src/popup/popup.html"
},
"background": {
"service_worker": "web_mcp_cli/background.bundle.js",
"type": "module"
},
"permissions": [
"storage",
"activeTab"
],
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"https://cursor.com/*"
],
"js": [
"src/content/content-core.js",
"src/content/content-session-shell.js",
"src/content/bridge-fab/bridge-core-mcp.js",
"src/content/bridge-fab/bridge-mcp-runner.js",
"src/content/bridge-fab/bridge-fab-recovery-layout.js",
"src/content/bridge-fab/bridge-mcp-panel.js",
"src/content/bridge-fab/bridge-ui-guards.js",
"src/content/layout/layout-core.js",
"src/content/layout/layout-reconcile-observer.js",
"src/content/layout/layout-thinking-style.js",
"src/content/content-runtime.js"
],
"run_at": "document_idle",
"css": [
"src/content/styles/layout-global-base.css",
"src/content/styles/layout-global-shell-history.css",
"src/content/styles/layout-global-chat-responsive.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"src/injected/page-hook.js"
],
"matches": [
"https://cursor.com/*"
]
}
]
}