Append random variable to links
当前为
// ==UserScript==
// @name F365 Temporary Refresh Fix
// @description Append random variable to links
// @match http://forum.football365.com/*
// @version 0.0.1.20150908094233
// @namespace https://greasyfork.org/users/14019
// ==/UserScript==
$('a').each(function(){
this.href += '&'+Math.random().toString(36).replace(/[^a-z]+/g, '').substr(0, 5);
})