vscode-live-server
vscode-live-server copied to clipboard
Add "opera" and "vivaldi" as custom browser option
I'm submitting a...
[ ] Regression (a behavior that used to work and stopped working in a new release)
[ ] Bug report <!-- Please search GitHub for a similar issue or PR before submitting -->
[x] Feature request
[ ] Documentation issue or request
[ ] Other: <!-- Please describe: -->
Current behavior
No option to use opera and vivaldi
Expected behavior
Environment
Browser:
- [ ] Chrome (desktop) version XX
- [ ] Firefox version XX
- [ ] Safari (desktop) version XX
- [ ] IE version XX
- [ ] Edge version XX
For Tooling issues:
- Live Server: <!-- Check which version is installed -->
- Platform: <!-- Mac, Linux, Windows -->
- Visual Studio Code: <!-- `code --version` -->
Others
I'd request the same thing. This is weird Opera is not supported by Live Server.
It is still not added. Isn't that a bit too weird?
Help please
Has the Opera browser still not been added to the custom browsers?
you can go at live server extension folder, at package.json-> line 130 enum [] add "vivaldi", "vivaldi:PrivateMode", "opera", "opera:PrivateMode", then go at src/appModel.ts at line 240 change to if (browserName === 'chrome' || browserName === 'blisk' || browserName === 'vivaldi') and add a new else if else if (browserName === 'opera') params.push('--private'); that works for me