F365 Temporary Refresh Fix

Append random variable to links

目前为 2015-09-08 提交的版本,查看 最新版本

// ==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);
})