关掉垃圾堆CSDN
当前为
// ==UserScript==
// @name CSDN终结者
// @description 关掉垃圾堆CSDN
// @version 0.1
// @author CHENMO
// @match https://www.baidu.com/*
// @homepageURL https://github.com/chenmoand
// @grant none
// @namespace https://greasyfork.org/users/323592
// ==/UserScript==
(function() {
'use strict';
// 万恶的csdn滚球把
const bdinput = $("#form input[name='wd']");
const bdsubmit = $("#form input[value='百度一下']")
bdsubmit.click(() => {
bdinput.val(bdinput.val() + ' -csdn');
});
})();