I've noticed recently that list of questions asked from the section from Amazon products has been removed, which I find hugely annoying as I enjoyed being able to browse to see what common or important questions people had about a product.
Now you have to search, which is pointless if I just want to get an overview of issues or questions people have about a product and see which questions are highest voted or most helpful.
I found this great bookmarklet though which links you off to the dedicated questions page for a product, which (at least for now) still exists at
Thought some of you might find it helpful!
Source
Now you have to search, which is pointless if I just want to get an overview of issues or questions people have about a product and see which questions are highest voted or most helpful.
I found this great bookmarklet though which links you off to the dedicated questions page for a product, which (at least for now) still exists at
Thought some of you might find it helpful!
Bookmarklet for those interested. Opens this Questions URL, in a new tab, for the Amazon product on the current page:
JavaScript:javascript:void%20function(){const%20a=document.URL,b=a.match(/^(http[s]%3F:\/\/[^/]+)\/(%3F:.+%3F\/)%3F(%3F:dp|gp\/product|asin)\/(%3F:.+%3F\/)%3F([a-zA-Z0-9]{10})(%3F:[/%3F]|$)/i);if(b%26%26(scheme_and_host=b[1])%26%26(asin=b[2])){var%20c=`${scheme_and_host}/ask/questions/asin/${asin}`;window.open(c,%22_blank%22)}}();
Source:
JavaScript:const url = document.URL; const regex = new RegExp("^(http[s]?://[^/]+)/(?:.+?/)?(?:dp|gp/product|asin)/(?:.+?/)?([a-zA-Z0-9]{10})(?:[/?]|$)", "i"); const matches = url.match(regex); if (matches && (scheme_and_host = matches[1]) && (asin = matches[2])) { var questions_url = `${scheme_and_host}/ask/questions/asin/${asin}`; window.open(questions_url, '_blank'); }
Source
Last edited: