您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
某些网站打开链接会进入安全中转页面,此脚本实现自动跳转功能
当前为
// ==UserScript== // @name 中转页面自动跳转 // @namespace dhjesus // @version 0.0.2 // @keywords 微信,稀土掘金 // @description 某些网站打开链接会进入安全中转页面,此脚本实现自动跳转功能 // @author DHJesus // @include *://weixin110.qq.com/* // @include *://link.juejin.cn/* // @grant none // @compatible Chrome // @compatible Firefox // @compatible Edge // @compatible Safari // @compatible Opera // @compatible UC // ==/UserScript== (function () { var host = window.location.host; if(host.indexOf('weixin110') != -1) { window.location.href = document.getElementsByClassName('weui-msg__desc')[0].textContent; } if(host.indexOf('juejin') != -1) { window.location.href = document.getElementsByTagName('p')[1].textContent; } })();