// ==UserScript== // @name 蓝奏云连接转换 // @namespace https://greasyfork.org/zh-CN/scripts/408717-%E8%93%9D%E5%A5%8F%E4%BA%91%E8%BF%9E%E6%8E%A5%E8%BD%AC%E6%8D%A2 // @version 0.3 // @description 从蓝奏云连接转换成pan.lanzou.com解决一部分蓝奏云用户无法打开蓝奏云网站的问题! // @AuThor KongKe // @include * // @exclude *://*.lanzou*/* // @grant none // @downloadURL none // ==/UserScript== (function() { var html = document.getElementsByTagName("html")[0]; if(html.innerHTML.indexOf("lanzou")>=0){ html.innerHTML=html.innerHTML.replace(/https?:.+?.lanzou[a-z]{1}/g,"https://pan.lanzou"); console.log("发现蓝奏云连接,已替换!"); } })();