greasemonkey 脚本去除腾讯微博的选中框

 1 // ==UserScript==
2 // @name Unclick checkbox
3 // @namespace http://use.i.E.your.homepage/
4 // @version 0.1
5 // @description enter something useful
6 // @match http://share.v.t.qq.com/*
7 // @copyright 2012+, You
8 // ==/UserScript==
9
10
11
12
13 inputlist = document.getElementsByTagName("input");
14
15 for(var i = 0; i < inputlist.length; i++) {
16 if(inputlist[i].type == "checkbox") inputlist[i].checked = false;
17 }
posted @ 2012-04-05 07:12  run-forever  阅读(278)  评论(0编辑  收藏  举报