// ==UserScript== // @name Jump@5ch Auto Jump // @namespace https://greasyfork.org/users/216002 // @version 1.0.0 // @description Jump@5ch のページを開いたとき、自動でジャンプ先のページに移ります。 // @author Itomozuku // @match *://jump.5ch.net/?http* // @grant none // @run-at document-body // @downloadURL none // ==/UserScript== (function() { 'use strict'; window.stop(); const link = document.querySelector('a'); if (link.getAttribute('href')) link.click(); })();