-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.53 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.53 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "shutup-tabs",
"displayName": "ShutUp Tabs - Auto Close Claude Code Tabs",
"description": "Stop Claude Code from opening tabs. Auto-closes diff tabs and companion file tabs after a safe delay. Works in VS Code, Cursor, Windsurf, Antigravity, Roo Code, Cline, Kilo Code, and all VS Code forks. Free by ClawSecure.",
"version": "1.0.3",
"publisher": "ClawSecure",
"license": "MIT",
"engines": {
"vscode": "^1.95.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ClawSecure/shutup-tabs"
},
"categories": [
"Other"
],
"keywords": [
"tab-clutter",
"close-tabs",
"diff",
"focus",
"productivity",
"ai-tabs",
"cursor",
"windsurf",
"antigravity"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#1a1a2e",
"theme": "dark"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "ShutUp Tabs",
"properties": {
"shutupTabs.enabled": {
"type": "boolean",
"default": true,
"description": "Enable auto-closing of Claude Code diff and file tabs"
},
"shutupTabs.closeDelay": {
"type": "number",
"default": 1500,
"description": "Milliseconds to wait before closing a tab (allows Claude's write to complete)"
},
"shutupTabs.closeDiffTabs": {
"type": "boolean",
"default": true,
"description": "Auto-close [Claude Code] diff tabs"
},
"shutupTabs.closeFileTabs": {
"type": "boolean",
"default": true,
"description": "Auto-close file tabs opened alongside Claude Code diffs"
},
"shutupTabs.showNotifications": {
"type": "boolean",
"default": false,
"description": "Show a notification when tabs are closed (useful for debugging)"
}
}
},
"commands": [
{
"command": "shutupTabs.toggle",
"title": "ShutUp Tabs: Toggle On/Off"
},
{
"command": "shutupTabs.closeAllClaudeTabs",
"title": "ShutUp Tabs: Close All Claude Code Tabs Now"
},
{
"command": "shutupTabs.showStats",
"title": "ShutUp Tabs: Show Session Stats"
}
]
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"package": "vsce package"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/vscode": "^1.95.0",
"@vscode/vsce": "^3.2.2",
"typescript": "^5.7.0"
}
}