修改超星论文查重(自慰)
// ==UserScript==
// @name 修改超星论文查重(自慰)
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author H
// @match http://dsa.dayainfo.com/*
// @icon https://www.google.com/s2/favicons?domain=dayainfo.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
//定义按钮,以及文本框
var butn = document.createElement("button");
var textvalue = document.createElement("INPUT");
textvalue .setAttribute("type", "text");
//优化按钮
butn.innerText="修改";
butn.style.background="#757575";
butn.style.color="#fff";
//优化文本框
textvalue.size = "10";
textvalue.color="#ffff";
//触发点击事件
butn.onclick=function(){
var x = document.getElementsByClassName("li_2 similarpercent");
x[0].innerText = textvalue.value+"%";
};
//在网页中插入按钮以及文本框
var share = document.querySelector(".second_nav");
share.parentElement.append(butn,share);
share.parentElement.append(textvalue,share);
})();