File size: 858 Bytes
2516c8e | 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 | {
"name": "skip-google-antigravity",
"displayName": "Skip Google Antigravity",
"description": "Automatically skips all pending steps from the Antigravity Agent, including terminal run command requests.",
"version": "0.2.0",
"icon": "icon.png",
"publisher": "GA-Meta-Vision",
"repository": {
"type": "git",
"url": "https://github.com/algorembrant/skip-google-antigravity"
},
"engines": {
"vscode": "^1.60.0"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./extension.js",
"categories": [
"Other"
],
"contributes": {
"commands": [
{
"command": "unlimited.toggle",
"title": "Toggle Unlimited Auto-Skip"
}
],
"keybindings": [
{
"command": "unlimited.toggle",
"key": "ctrl+alt+shift+u",
"mac": "cmd+alt+shift+u"
}
]
}
} |