返回首頁 

Greasy Fork is available in English.

考试题库网显示跳转答案

try to take over the world!

// ==UserScript==// @name         考试题库网显示跳转答案// @namespace    http://tampermonkey.net/// @version      0.1// @author       LiuYu####// @grant        none// @match        *://www.ppkao.com/tiku/shiti/*// @include      *://www.ppkao.com/tiku/shiti/*// @namespace    https://liuyu####.ml// @description try to take over the world!// ==/UserScript==(function() {'use strict';var url = window.location.hrefvar reg = /[1-9][0-9]*/gvar num = url.match(reg)window.location.href = 'https://newapi.ppkao.com/mnkc/tiku/?id='+num})();