An open API service indexing awesome lists of open source software.

https://github.com/fabiospampinato/vscode-open-in-browsers

Adds some commands for opening the current file or project in any browser you like, even all of them simultaneously.
https://github.com/fabiospampinato/vscode-open-in-browsers

browsers extension open-in vsc vscode

Last synced: about 1 month ago
JSON representation

Adds some commands for opening the current file or project in any browser you like, even all of them simultaneously.

Awesome Lists containing this project

README

          

# Open in Browsers


Logo

Adds some commands for opening the current file or project in any browser you like, even all of them simultaneously.

## Install

Follow the instructions in the [Marketplace](https://marketplace.visualstudio.com/items?itemName=fabiospampinato.vscode-open-in-browsers), or run the following in the command palette:

```shell
ext install fabiospampinato.vscode-open-in-browsers
```

## Usage

It adds 3 commands to the command palette:

```js
'Open in Browser...' // Open the current file or project in the selected browser
'Open in Default Browser' // Open the current file or project in the default browser
'Open in All Browsers' // Open the current file or project in all browsers
```

## Settings

An example configuration may look like this:

```js
{
"openInBrowsers.browser": "chrome", // Browser opened via "Open in Default Browser"
"openInBrowsers.browsers": ["chrome", "firefox", "safari", "edge"] // Browsers opened via "Open in All Browsers"
}
```

## License

MIT © Fabio Spampinato