您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
无需微信或 2345 浏览器以及验证码,直接显示下载链接
当前为
// ==UserScript== // @name 直接显示课件站下载链接 // @namespace https://github.com/Rongronggg9/kjzhanFakeUA // @version 1.1 // @description 无需微信或 2345 浏览器以及验证码,直接显示下载链接 // @author Rongronggg9 // @match *://www.kjzhan.com/plus/download.php* // @run-at document-start // @grant none // @supportURL https://github.com/Rongronggg9/kjzhanFakeUA/issues // @icon http://www.kjzhan.com/favicon.ico // ==/UserScript== (function() { 'use strict'; navigator.__defineGetter__('userAgent', function() { return 'WangPai MicroMessenger'; }); window.addEventListener('load', function() { document.getElementById("ys").style.display = "none"; document.getElementById("dow").style.display = "block"; }, false); })();