// ==UserScript== // @name Qzone Cleaner // @namespace http://tampermonkey.net/ // @version 1.2 // @description 屏蔽QQ空间广告等,屏蔽/只看一些用户的点赞。 // @author H-OH // @match https://*.qzone.qq.com/* // @grant GM_setValue // @grant GM_getValue // @downloadURL none // ==/UserScript== (function() { 'use strict'; var only=false; function killname() { var use=GM_getValue("killname","")+"\n"; var add=""; var name=new Array(); for (var c=0;c a"); for (var t=0;t"; set.innerHTML+="
反向屏蔽"; document.getElementById("pageContent").appendChild(set); document.getElementById("name").value=GM_getValue("killname",""); document.getElementById("save").onclick=function() { GM_setValue("killname",document.getElementById("name").value); document.getElementById("save").innerText="已保存"; setTimeout(function(){document.getElementById("save").innerText="保存";},2000); } } if (GM_getValue("killonly","false")=="true") {only=true;} if (document.querySelectorAll("#only").length) { if (only) {document.getElementById("only").checked=true;} document.getElementById("only").onclick=function() { if (document.getElementById("only").checked) {GM_setValue("killonly","true");only=true;} else {GM_setValue("killonly","false");only=false;} } } })();