Adds some commands for opening the current file or project in any browser you like, even all of them simultaneously.
Follow the instructions in the Marketplace, or run the following in the command palette:
ext install fabiospampinato.vscode-open-in-browsers
It adds 3 commands to the command palette:
'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
An example configuration may look like this:
{
"openInBrowsers.browser": "chrome", // Browser opened via "Open in Default Browser"
"openInBrowsers.browsers": ["chrome", "firefox", "safari", "edge"] // Browsers opened via "Open in All Browsers"
}
MIT © Fabio Spampinato