Reddit old new swticher link

Adds links to old.reddit on new reddit pages, and links to new reddit on old.reddit pages.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Reddit old new swticher link
// @namespace    https://reddit.com/
// @version      2
// @description  Adds links to old.reddit on new reddit pages, and links to new reddit on old.reddit pages.
// @author       Tehhund
// @match        *://*.reddit.com/*
// @match        *://reddit.com/*
// @icon         https://www.redditstatic.com/shreddit/assets/favicon/64x64.png
// @run-at       document-start
// @license      MIT
// ==/UserScript==

addLinks = () => {
  if (document.getElementsByClassName(`oldNewRedditSwitcher`)[0]) { return } // If the script already ran, do nothing.
  let oldOrNew = new URL(window.location.href).host.includes(`old.reddit`) ? `New` : `Old`;
  let myUrl = new URL(window.location.href);
  myUrl.host = `${(oldOrNew) == `Old` ? `old` : `www`}.reddit.com`;
  if (oldOrNew == `Old`) {
    const link = document.getElementById(`create-post`).cloneNode(false);
    link.classList.add(`oldNewRedditSwitcher`);
    link.textContent = `${oldOrNew} Reddit`;
    link.href = myUrl.href;
    document.getElementById(`create-post`).insertAdjacentElement(`afterend`, link);
  } else {
    const link = document.createElement(`a`)
    link.classList.add(`oldNewRedditSwitcher`);
    link.textContent = `${oldOrNew} Reddit`;
    link.href = myUrl.href;
    document.getElementById(`redesign-beta-optin-btn`).insertAdjacentElement(`afterend`, link);
  }
}

try { addLinks(); } catch (e) { }// If the script runs after DOMContentLoaded this will add the links. If it runs before DOMContentLoaded, this will error and the listener below will run it instead.
window.addEventListener('DOMContentLoaded', addLinks);