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