5ch.net Direct Links

Replace jump.5ch.net links with direct links

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        5ch.net Direct Links
// @name:ja     5ch.net Direct Links
// @namespace   Violentmonkey Scripts
// @include     */r/*/*/*
// @include     */test/read.cgi/*/*
// @include     */read.php/*/*
// @include     */log/*/*/*/
// @include     *.5ch.net/*/*
// @include     *.2ch.sc/test/read.cgi/*/*
// @grant       none
// @version     1.3
// @author      -
// @description Replace jump.5ch.net links with direct links
// @description:ja "jump.5ch.net"に行くリンクを探して普通のリンクに変える。
// @license     MIT
// @icon        https://5ch.net/favicon.ico
// ==/UserScript==
document.querySelectorAll('article .post-content a:not(.reply_link), div.message a').forEach((a) => {
  let newUrl = a.href.replace(/^http.*jump.5ch.net\/\?/, '')
  newUrl = newUrl.replace(/^http.*www.pinktower.com\/\?/, '')
  //console.log(a.href, newUrl)
  a.href = newUrl
})

// 2024-08-29:  Remove the new style click handler from:  assets/js/iphone/application.production.js .
// I'm sorry I didn't update this sooner.
if (unsafeWindow.$ && unsafeWindow.$("#main") && unsafeWindow.$("#main").off) {
  console.log("removing click handler")
  unsafeWindow.$("#main").off('click', '.threadview_response_body_embedlink, .threadview_response_body_link')
}