├── .gitignore ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── eventPage.js ├── launch.gif ├── manifest.json ├── omnibox.gif ├── options.css ├── options.html ├── options.js ├── vscode-insiders.png └── vscode.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-dev-chrome-launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.branchProtection": ["main"] 3 | } -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-dev-chrome-launcher/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-dev-chrome-launcher/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-dev-chrome-launcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-dev-chrome-launcher/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-dev-chrome-launcher/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-dev-chrome-launcher/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /eventPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-dev-chrome-launcher/HEAD/eventPage.js -------------------------------------------------------------------------------- /launch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-dev-chrome-launcher/HEAD/launch.gif -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-dev-chrome-launcher/HEAD/manifest.json -------------------------------------------------------------------------------- /omnibox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-dev-chrome-launcher/HEAD/omnibox.gif -------------------------------------------------------------------------------- /options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-dev-chrome-launcher/HEAD/options.css -------------------------------------------------------------------------------- /options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-dev-chrome-launcher/HEAD/options.html -------------------------------------------------------------------------------- /options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-dev-chrome-launcher/HEAD/options.js -------------------------------------------------------------------------------- /vscode-insiders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-dev-chrome-launcher/HEAD/vscode-insiders.png -------------------------------------------------------------------------------- /vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-dev-chrome-launcher/HEAD/vscode.png --------------------------------------------------------------------------------