Files
vscode/extensions/simple-browser/package.json
Joaquín Ruales c3d3f8d540 Make simpleBrowser.useIntegratedBrowser true by default (#296775)
* Update default value for useIntegratedBrowser setting

Changed default value of useIntegratedBrowser to true.

* Address feedback on default setting for `simpleBrowser.useIntegratedBrowser` (#296776)

* Initial plan

* Change default fallback for useIntegratedBrowserSetting from false to true

Co-authored-by: jruales <1588988+jruales@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: jruales <1588988+jruales@users.noreply.github.com>

* Remove "experimental" label from simpleBrowser.useIntegratedBrowser setting description (#296777)

* Initial plan

* Remove 'experimental' from useIntegratedBrowser setting description

Co-authored-by: jruales <1588988+jruales@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: jruales <1588988+jruales@users.noreply.github.com>

---------

Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
2026-02-22 20:20:35 -08:00

91 lines
2.7 KiB
JSON

{
"name": "simple-browser",
"displayName": "%displayName%",
"description": "%description%",
"enabledApiProposals": [
"externalUriOpener"
],
"version": "10.0.0",
"icon": "media/icon.png",
"publisher": "vscode",
"license": "MIT",
"aiKey": "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",
"engines": {
"vscode": "^1.70.0"
},
"main": "./out/extension",
"browser": "./dist/browser/extension",
"categories": [
"Other"
],
"extensionKind": [
"ui",
"workspace"
],
"activationEvents": [
"onCommand:simpleBrowser.api.open",
"onOpenExternalUri:http",
"onOpenExternalUri:https",
"onWebviewPanel:simpleBrowser.view"
],
"capabilities": {
"virtualWorkspaces": true,
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {
"commands": [
{
"command": "simpleBrowser.show",
"title": "Show",
"category": "Simple Browser"
}
],
"configuration": [
{
"title": "Simple Browser",
"properties": {
"simpleBrowser.focusLockIndicator.enabled": {
"type": "boolean",
"default": true,
"title": "Focus Lock Indicator Enabled",
"description": "%configuration.focusLockIndicator.enabled.description%"
},
"simpleBrowser.useIntegratedBrowser": {
"type": "boolean",
"default": true,
"markdownDescription": "%configuration.useIntegratedBrowser.description%",
"scope": "application"
}
}
}
]
},
"scripts": {
"compile": "gulp compile-extension:simple-browser && npm run build-webview",
"watch": "npm run build-webview && gulp watch-extension:simple-browser",
"vscode:prepublish": "npm run build-ext && npm run build-webview",
"build-ext": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.mjs compile-extension:simple-browser ./tsconfig.json",
"build-webview": "node ./esbuild.webview.mts",
"compile-web": "npm-run-all2 -lp bundle-web typecheck-web",
"bundle-web": "node ./esbuild.browser.mts",
"typecheck-web": "tsgo --project ./tsconfig.json --noEmit",
"watch-web": "npm-run-all2 -lp watch-bundle-web watch-typecheck-web",
"watch-bundle-web": "node ./esbuild.browser.mts --watch",
"watch-typecheck-web": "tsgo --project ./tsconfig.json --noEmit --watch"
},
"dependencies": {
"@vscode/extension-telemetry": "^0.9.8"
},
"devDependencies": {
"@types/node": "22.x",
"@types/vscode-webview": "^1.57.0",
"@vscode/codicons": "^0.0.36"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode.git"
}
}