url.cn 自动跳转

在遇到“如需浏览,请长按网址复制后使用浏览器访问”时,获取页面中的网址并自动跳转

  1. // ==UserScript==
  2. // @name url.cn 自动跳转
  3. // @description 在遇到“如需浏览,请长按网址复制后使用浏览器访问”时,获取页面中的网址并自动跳转
  4. // @namespace RainSlide
  5. // @author RainSlide
  6. // @version 1.0
  7. // @match http://url.cn/*
  8. // @grant none
  9. // @inject-into context
  10. // @run-at document-end
  11. // @license Unlicense
  12. // ==/UserScript==
  13.  
  14. "use strict";
  15.  
  16. ( link => link !== null && location.assign(link.textContent) )
  17. ( document.querySelector('.link') );

QingJ © 2025

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