洛谷省略专栏跳转

解放双手,造福人类

  1. // ==UserScript==
  2. // @name 洛谷省略专栏跳转
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.2
  5. // @description 解放双手,造福人类
  6. // @author cyx
  7. // @match *://www.luogu.com.cn/article/*
  8. // @license MIT
  9. // ==/UserScript==
  10. (function () {
  11. 'use strict';
  12. let a = document.URL;
  13. let t = document.documentElement.outerHTML;
  14. let b = "";
  15. for (let i = 0; i < a.length; i++) {
  16. if (i < a.length - 3 && a[i] == '.' && a[i + 1] == 'c' && a[i + 2] == 'n') i += 2;
  17. else b += a[i];
  18. }
  19. if (t.indexOf(b) >= 0) {
  20. window.location.replace(b);
  21. }
  22. })();

QingJ © 2025

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