Greasy Fork 支持简体中文。

Fast link for forum Black Russia | Для Кураторов Форума 25 сервера 2.0

Fast link for forum BR

// ==UserScript==
// @name         Fast link for forum Black Russia | Для Кураторов Форума 25 сервера 2.0
// @namespace    https://forum.blackrussia.online
// @version      1.0.1
// @description  Fast link for forum BR
// @author       ......................
// @match        https://forum.blackrussia.online/*
// @icon         https://i.postimg.cc/SN5mt4hB/image.png
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

const bgButtons = document.querySelector(".pageContent");
    const ButtonRep = document.createElement("button");
    const ButtonZB = document.createElement("button");
    const ButtonPR = document.createElement("button");

    ButtonRep.textContent = "Админ раздел";
    ButtonZB.textContent = "ЖБ на игроков";
    ButtonPR.textContent = "Правила";


    bgButtons.append(ButtonRep);
    bgButtons.append(ButtonZB);
    bgButtons.append(ButtonPR);


    ButtonRep.style.marginLeft = "40px";
    ButtonRep.style.background = "#878686"
    ButtonRep.style.borderRadius = "20px"
    ButtonRep.style.boreder = "5px solid #4a4b4d"
    ButtonRep.style.font = "Cuprum"
    ButtonRep.style.span = "italic normal bold"

    ButtonZB.style.marginLeft = "40px";
    ButtonZB.style.background = "#878686"
    ButtonZB.style.borderRadius = "20px"
    ButtonZB.style.boreder = "5px solid #4a4b4d"
    ButtonZB.style.font = "Cuprum"

    ButtonPR.style.marginLeft = "40px";
    ButtonPR.style.background = "#878686"
    ButtonPR.style.borderRadius = "20px"
    ButtonPR.style.boreder = "5px solid #4a4b4d"
     ButtonPR.style.font = "Cuprum"



    function BRep() {
        window.location.href = 'https://forum.blackrussia.online/forums/%D0%90%D0%B4%D0%BC%D0%B8%D0%BD-%D1%80%D0%B0%D0%B7%D0%B4%D0%B5%D0%BB.1141/';
    };


    function BZB() {
        window.location.href = 'https://forum.blackrussia.online/forums/%D0%96%D0%B0%D0%BB%D0%BE%D0%B1%D1%8B-%D0%BD%D0%B0-%D0%B8%D0%B3%D1%80%D0%BE%D0%BA%D0%BE%D0%B2.1167/';
    };

    function BPR() {
        window.location.href = 'https://forum.blackrussia.online/threads/%D0%9E%D0%B1%D1%89%D0%B8%D0%B5-%D0%BF%D1%80%D0%B0%D0%B2%D0%B8%D0%BB%D0%B0-%D1%81%D0%B5%D1%80%D0%B2%D0%B5%D1%80%D0%BE%D0%B2.312571/';
    };



    ButtonRep.addEventListener("click", () => {
        BRep();
        ButtonRep.style.background = "#696969"
    });

    ButtonZB.addEventListener("click", () => {
        BZB();
        ButtonZB.style.background = "#696969"
    });

    ButtonPR.addEventListener("click", () => {
        BPR();
        ButtonPR.style.background = "#696969"
    });

})();