重定向Zol产品到参数详情页

将中关村在线的产品URL重定向到详细参数页。

  1. // ==UserScript==
  2. // @name 重定向Zol产品到参数详情页
  3. // @namespace https://www.example.com/
  4. // @version 1.0
  5. // @description 将中关村在线的产品URL重定向到详细参数页。
  6. // @author Techwb.cn
  7. // @match https://detail.zol.com.cn/*
  8. // @icon https://detail.zol.com.cn/favicon.ico
  9. // @grant none
  10. // @license none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. // 获取当前页面 URL 中的产品编号。
  17. var originalUrl = window.location.href;
  18. var phoneId = originalUrl.match(/index(\d+)\.shtml/)[1];
  19.  
  20. // 将产品编号拆分成分类部分和编号部分。
  21. var category = parseInt(phoneId.substr(0, 4)) + 1; // 分类部分是产品编号的前四个数字加 1。
  22. var id = phoneId.substr(4); // 编号部分是产品编号的剩余数字。
  23.  
  24. // 构造新的 URL,并将当前页面重定向到新的 URL。
  25. var newUrl = "https://detail.zol.com.cn/" + category + "/" + phoneId + "/param.shtml";
  26. window.location.href = newUrl;
  27. })();

QingJ © 2025

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