vscode-live-server icon indicating copy to clipboard operation
vscode-live-server copied to clipboard

Add "opera" and "vivaldi" as custom browser option

Open alo0oz opened this issue 6 years ago • 5 comments
trafficstars

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

alo0oz avatar Mar 18 '19 17:03 alo0oz

I'd request the same thing. This is weird Opera is not supported by Live Server.

aderchox avatar Feb 26 '22 05:02 aderchox

It is still not added. Isn't that a bit too weird?

Ayush10 avatar Sep 14 '22 04:09 Ayush10

Help please

flopezre avatar Dec 08 '22 02:12 flopezre

Has the Opera browser still not been added to the custom browsers?

Shivangbhatnagar237 avatar Aug 01 '23 19:08 Shivangbhatnagar237

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

araemis avatar Oct 08 '23 14:10 araemis