Amazon URL Cleaner

Replace article URL for Amazon

目前为 2017-09-15 提交的版本。查看 最新版本

// ==UserScript==
// @name           Amazon URL Cleaner
// @namespace      graphen
// @description    Replace article URL for Amazon
// @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)/.*$/
// @noframes
// @grant          none
// @version        1
// ==/UserScript==
(function(doc) {
    // ASIN.0 in kindle store
    var asin = doc.getElementById("ASIN") || doc.getElementsByName("ASIN.0")[0];
    if (asin) {
        asin = asin.value;
        history.replaceState(null, "Amazon URL Cleaner", "/dp/" + asin + "/");
    }
})(document);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址