// ==UserScript== // @name QQ浏览器主页个性化的搜索模块净化 // @namespace http://www.baidu.com // @version 0.2 // @description QQ浏览器自定义主页个性化 // @author sanrice // @match *://*/* // @grand none // @license End-User License Agreement // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... $('.qbsbox-panel').remove(); //当页面加载状态改变的时候执行function document.onreadystatechange = function(){ if(document.readyState == "complete"){ setTimeout(function() { //当页面加载状态为完全结束时进入 document.querySelector('input').placeholder = ''; }, 200); setTimeout(function() { //当页面加载状态为完全结束时进入 document.querySelector('input').placeholder = ''; }, 5000); } } })();