您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
将游戏网页强制跳转到学习页面
// ==UserScript== // @name 熊孩子学习助手 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 将游戏网页强制跳转到学习页面 // @author cool lei, jiajun // @match * // @grant unsafeWindow // ==/UserScript== (function() { // 获取当前URL var currentUrl = window.location.href; var url = [ "http://www.jtyhjy.com/edu/home_index.action", "https://www.baobaoxuexi.com/", ]; //跳转到学习页面 function gotoStudyWeb(){ var googleHelpUrl = { url:[ "http://www.4399.com/", "http://www.7k7k.com", ] }; for(let i=0;i<googleHelpUrl.url.length;i++){ if(currentUrl.indexOf(googleHelpUrl.url[i])!==-1){ window.location.href = url[Math.floor(Math.random() * url.length)]; return; } } } gotoStudyWeb(); })();