Displays the current and registration location of eBay sellers on product listings.
< Feedback on eBay Seller Location
Hotfix #2 for recent eBay changes:
In line 24, replace
document.querySelector('a[data-itemid]').getAttribute("data-itemid");
with
window.location.pathname.split("/").pop();
Explanation: The first selector gets an attribute of an element that no longer exists. This is unnecessary, since the same string (the item-id) can be read from the page's url.
جاۋاب قايتۇرۇش ئۈچۈن كىرىش.
Hotfix #2 for recent eBay changes:
In line 24, replace
document.querySelector('a[data-itemid]').getAttribute("data-itemid");
with
window.location.pathname.split("/").pop();
Explanation: The first selector gets an attribute of an element that no longer exists. This is unnecessary, since the same string (the item-id) can be read from the page's url.