Greasy Fork

Greasy Fork is available in English.

Jump@5ch Auto Jump

Jump@5ch のページを開いたとき、自動でジャンプ先のページに移ります。

目前为 2018-10-05 提交的版本。查看 最新版本

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