不错过任何一点荣誉
当前为
// ==UserScript== // @id [email protected] // @name WoD 智能投票 // @namespace http://github.com/huangtc // @author huangtc // @description 不错过任何一点荣誉 // @include http://canto.world-of-dungeons.org/wod/spiel/rewards/vote.php* // @version 0.1 // @grant none // ==/UserScript== var votes = $('div[class=\'vote banner\']>a'); var texts = $('div[class=\'vote reward\']'); for (i in votes) { var vote = votes[i]; var text = texts[i].textContent.slice(0, 7); if (text !== '你可以再次获得') { vote.onclick.call(); console.log('voted: ' + vote.href); } }