this post was submitted on 12 Nov 2024
10 points (85.7% liked)

Firefox

18045 readers
19 users here now

A place to discuss the news and latest developments on the open-source browser Firefox

founded 5 years ago
MODERATORS
 

URL is https://www.ebay.com/str/theartofserver

Is there an addon to defeat this right-click disable method ?

thanks !

top 10 comments
sorted by: hot top controversial new old
[–] [email protected] 12 points 1 month ago (1 children)

I don't think so. This is just shitty website design on the part of the website developers. They aren't links, they are elements with click handlers on them, so the browser doesn't know what to open.

On some websites it works if you click one part of such an element, eg. the text.

[–] [email protected] 2 points 1 month ago (1 children)

I think if I middle click there, firefox should duplicate the tab and click there. Something to work aroubd this annoyance somehow. I intended to open like 20 elements in that list in each new tab. This was very annoying!

In the end I just gave up! And didn't buy anything

[–] Zachariah 1 points 1 month ago (1 children)

If you’re trying to open the link in a new tab, does CTRL+click work?

[–] [email protected] 2 points 1 month ago

Like middle click, it did not open in a new tab.

[–] [email protected] 4 points 1 month ago

Unrelated because it's a different problem, but if a website actually disables your right-click, try holding Shift while right-clicking.

[–] Zachariah 4 points 1 month ago (1 children)

Can you do the text instead of the image?

[–] [email protected] 2 points 1 month ago (1 children)

Yes, but it is the same, not a "real" link but a javascript thing

[–] Zachariah 1 points 1 month ago

So stupid when pages are broken on purpose.

[–] Zak 3 points 1 month ago

You can't middle-click them because they aren't links. That is to say, they are not a elements but div elements with an added click event handler that navigates to another page. There's a case to be made for doing things like that on a website that's trying to behave like a native application, but Ebay fundamentally behaves like a website and building its navigation this way is bad design.

[–] [email protected] 3 points 1 month ago

If you use the "Inspect (Q)" option, you can see that it is not a hyperlink. JavaScript will interfere and act like you clicked on a link calling a specific JavaScript function.