Greasy Fork 支持简体中文。

上学吧免费查答案,答案搜索工具

上学问题答案一键查询,免费查答案!

// ==UserScript==
// @name         上学吧免费查答案,答案搜索工具
// @namespace    sxb
// @version      1.0
// @description  上学问题答案一键查询,免费查答案!
// @match        *://*.shangxueba.com/*
// @icon         https://www.shangxueba.com/favicon.ico
// @grant        none
// @license           LGPLv3
// ==/UserScript==

(function() {
	var tit=document.title;
    tit=tit.replace(" - 上学吧找答案","");
    tit=tit.replace(" - 上学吧继续教育考试","");
    tit=tit.replace("()","");
	var wturl='http://www.shangxueba365.com/?q=';
	var	p_html='<button  style="position:absolute;bottom:50%;left:2%;z-index:3;width:50px;position:fixed;"><a href="'+wturl+tit+'" target="_blank">免费查看答案</a>';
    $("body").append(p_html);
})();