Ok, so this shit’s so annoying, I’ve lost precious seconds of my life that I will never get back having to click that link over and over.
Then when you click that link, you have to click another link to ‘See Original Listing’ so you can actually look through the pics.
If you’re as pained by this annoying crap that I am, you can use the chrome extension I created:
chrome.google.com/webstore/detail/redirect-me/mgoieclockojklfidfdccpcknilknchd
This thing automatically loads the link to the original listing in that annoying blue banner, then loads the link on the next page that goes to the original listing with the available pics.
The code is super simple and super lightweight, here it is if you want to make your own extension for a different browser or whatever.
main.js (first conditional checks to see if the annoying tool tip is there, if it is, go to the link it has, the second conditional checks for the ‘See Original Listing’ link and goes to that page if it’s present):
`if(document.querySelectorAll(’.cvipTopMsg’).length > 0) {
var url = document.querySelectorAll(’.cvipTopMsg’)[0].childNodes[1].childNodes[1].attributes[0].nodeValue;
window.location = url;
}
if(document.querySelectorAll(’.vi-inl-lnk’).length > 0) {
var url = document.querySelectorAll(’.vi-inl-lnk’)[0].childNodes[0].attributes[0].nodeValue;
window.location = url;
}`
nomorerelateditems.css (gets rid of the gigantic related-items carousels on the final sold listing…and actually everywhere on the site):
.mfe-card-group { display: none; }
Only works for .com cuz I can’t be bothered to type in 30 different tld versions. Minimal testing so if it destroys your ebay browsing experience then just uninstall it