洛谷省略专栏、剪切板、讨论跳转

解放双手,造福人类

// ==UserScript==
// @name         洛谷省略专栏、剪切板、讨论跳转
// @namespace    http://tampermonkey.net/
// @version      1.3
// @description  解放双手,造福人类
// @author       tbdsh
// @match        *://www.luogu.com.cn/article/*
// @match        *://www.luogu.com.cn/discuss/*
// @match        *://www.luogu.com.cn/paste/*
// @license      MIT
// ==/UserScript==
(function () {
    'use strict';
    let a = document.URL;
    let t = document.documentElement.outerHTML;
    let b = "";
    for (let i = 0; i < a.length; i++) {
        if (i < a.length - 3 && a[i] == '.' && a[i + 1] == 'c' && a[i + 2] == 'n') i += 2;
        else b += a[i];
    }
    if (t.indexOf(b) >= 0) {
        window.location.replace(b);
    }
})();