Greasy Fork镜像 还支持 简体中文。

Skip Linkpage

解除Gitee.com,oschina.net,zhihu.com,jianshu.com,csdn.net等对于访问外部链接需要进行确认,安装后不会再有对于外部链接访问的限制。

  1. // ==UserScript==
  2. // @name Skip Linkpage
  3. // @namespace https://gf.qytechs.cn/zh-CN/scripts/440550-skip-linkpage
  4. // @version 0.3
  5. // @description 解除Gitee.com,oschina.net,zhihu.com,jianshu.com,csdn.net等对于访问外部链接需要进行确认,安装后不会再有对于外部链接访问的限制。
  6. // @author duice#foxmail.com
  7. // @match https://gitee.com/link?target=*
  8. // @match https://www.oschina.net/action/GoToLink?url=*
  9. // @match https://link.csdn.net/?target=*
  10. // @match https://link.zhihu.com/?target=*
  11. // @match https://www.jianshu.com/go-wild*
  12. // @icon
  13. // @license GPL
  14. // @grant none
  15. // ==/UserScript==
  16.  
  17. (function() {
  18. 'use strict';
  19. var pageurl = window.location.href;
  20. var targeturl=pageurl.split("=");
  21. window.location =decodeURIComponent(targeturl[targeturl.length-1]);
  22. })();

QingJ © 2025

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