ページ内のどこかのリンクにランダムで移動します。
/* * @title ランダムリンク * @description ページ内のどこかのリンクにランダムで移動します。 * @include http://* * @license MIT License * @require */ link = Math.floor(Math.random() * document.links.length); location.href = document.links[link].href;