Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>EnableSkriptNew to Visual Studio Code? Get it now.
EnableSkript

EnableSkript

Vincent Untiedt

|
2 installs
| (0) | Free
Warns when required VS Code extensions are not enabled in the workspace.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

EnableSkript

Warns when required VS Code extensions are not enabled in your workspace.

Unlike a simple installed-check, this detects extensions that are installed but disabled too, because it uses VS Code's extension API to verify each one is actually active.

Features

  • Checks a configurable list of required extension IDs when the workspace opens.
  • Shows a warning with a Show Extensions button listing what's missing.
  • Re-checks automatically when settings change.
  • Command: EnableSkript: Check Required Extensions (runs on demand and always reports, even when the warning is disabled).

Settings

All settings have resource scope, so they can be configured per workspace or folder (.vscode/settings.json).

Setting Type Default Description
enableSkript.enableWarning boolean true Enable/disable the warning.
enableSkript.requiredExtensions string[] [] Extension IDs to require.

Example workspace configuration

// .vscode/settings.json
{
    "enableSkript.enableWarning": true,
    "enableSkript.requiredExtensions": [
        "esbenp.prettier-vscode",
        "ms-vscode.powershell"
    ]
}

Development

npm install
npm run compile

Press F5 to launch an Extension Development Host for testing.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft