Greasy Fork

Greasy Fork is available in English.

Manjaro Forum auto-redirect to old site for missing pages

9/3/2020, 7:04:09 PM

当前为 2020-09-03 提交的版本,查看 最新版本

// ==UserScript==
// @name        Manjaro Forum auto-redirect to old site for missing pages
// @namespace   Manjaro Linux Forum
// @match       https://forum.manjaro.org/t/*
// @grant       none
// @version     1.0
// @author      SinTan
// @description 9/3/2020, 7:04:09 PM
// ==/UserScript==
not_found=document.getElementsByClassName("page-not-found")
if(not_found)
  {
    error_msg=not_found[0].getElementsByClassName("title")[0].innerHTML
    if (error_msg=="Oops! That page doesn’t exist or is private.")
      {
        window.location.href=window.location.href.replace("://forum.","://archived.forum.")
      }
  }