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.
- Host: GitHub
- URL: https://github.com/fabiospampinato/vscode-open-in-browsers
- Owner: fabiospampinato
- License: mit
- Created: 2017-07-26T16:47:29.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-03-19T18:34:21.000Z (over 1 year ago)
- Last Synced: 2025-01-30T07:15:29.540Z (9 months ago)
- Topics: browsers, extension, open-in, vsc, vscode
- Language: TypeScript
- Size: 1.1 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- Changelog: changelog.md
- License: license
Awesome Lists containing this project
README
# Open in Browsers
![]()
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