Replace article URL with short Amazon permalink
当前为
// ==UserScript==
// @name Amazon short URL
// @namespace graphen
// @version 2.7
// @description Replace article URL with short Amazon permalink
// @author Graphen
// @include /^https?:\/\/www\.amazon\.(cn|in|co\.jp|sg|fr|de|it|nl|es|co\.uk|ca|com(\.(mx|au|br))?)\/.*(dp|gp\/product|exec\/obidos\/ASIN|o\/ASIN)\/.*$/
// @icon https://www.amazon.com/favicon.ico
// @noframes
// @grant none
// ==/UserScript==
/* jshint esversion: 6 */
(function (doc) {
'use strict';
function getAsin(){
let asinId = doc.getElementById('ASIN');
if (asinId) {
return asinId.value;
}
else {
// Get ASIN from canonical link
let links = doc.getElementsByTagName('link');
let i;
for (i=0; i < links.length; i++) {
if (links[i].rel === 'canonical') {
let canonical = links[i].href;
let asin = canonical.replace(/https?:\/\/www\.amazon\..*\/dp\/([\w]+)$/, '$1');
if (asin.length === 10) {
return asin;
}
}
}
}
}
let asin = getAsin();
history.replaceState(null, 'Amazon URL Cleaner', '/dp/' + asin + '/');
//console.log("URL replaced by Amazon URL Cleaner. ASIN: " + asin);
}) (document);