Greasy Fork镜像 支持简体中文。

Amazon URL Cleaner (https)

update of Xant1k@bt's script to include https

  1. // ==UserScript==
  2. // @id Amazon URL Cleaner (https)
  3. // @name Amazon URL Cleaner (https)
  4. // @author Michael
  5. // @description update of Xant1k@bt's script to include https
  6. // @namespace http://efcl.info/
  7. // @description replaceState for Amazon
  8. // @include https://*amazon.*/dp/*
  9. // @include https://*amazon.*/*/dp/*
  10. // @include https://*amazon.*/*gp/product/*
  11. // @include https://*amazon.*/exec/obidos/ASIN/*
  12. // @include https://*amazon.*/o/ASIN/*
  13. // @version 0.0.1.20140518104255
  14. // ==/UserScript==
  15. (function(doc) {
  16. // ASIN.0 in kindle store
  17. var asin = doc.getElementById("ASIN") || doc.getElementsByName("ASIN.0")[0];
  18. if (asin) {
  19. asin = asin.value;
  20. history.replaceState(null, "Amazon URL Cleaner", "/dp/" + asin + "/");
  21. }
  22. })(document);

QingJ © 2025

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