Skip to content

Instantly share code, notes, and snippets.

View yaSebastian's full-sized avatar
👨‍💻

Sebastian Werner yaSebastian

👨‍💻
View GitHub Profile
(function(d) {
var asin = d.getElementById('ASIN');
var url;
if (asin) {
url = 'http://' + d.domain.split('.').slice(-2).join('.') + '/dp/' + asin.value;
window.location.href = url;
} else {
alert("Can't find an Amazon product ID.");
}