LZT_MemberCardReportButton

Add Report Button to member card

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         LZT_MemberCardReportButton
// @namespace    MeloniuM/LZT
// @version      1.1
// @description  Add Report Button to member card
// @author       MeloniuM
// @license      
// @match        http*://zelenka.guru/*
// @match        http*://lolz.live/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=zelenka.guru
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    let title = !(XenForo.visitor.language_id -1 )? 'Report user - {nickname}' : 'Жалоба на пользователя {nickname}'
    let message = !(XenForo.visitor.language_id -1 )? '1. Offender\'s nickname and profile link: https://zelenka.guru/members/{member_id}/\n2. Brief description of the complaint:\n3. Evidence:': '1. Никнейм нарушителя и ссылка на профиль: https://zelenka.guru/members/{member_id}/\n2. Краткое описание жалобы:\n3. Доказательства:'

    $(document).on('XFOverlay', function(e){
        let $overlay = e.overlay.getOverlay();
        if (!$overlay.is('.memberCard')) return;
        let popup = $overlay.find('.top .right .Popup.fl_r').data('XenForo.PopupMenu');
        if (popup.$menu.find('.blockLinksList:has(.LZTReportButton)').length) return;
        let member_id = $overlay.find('.memberCardInner').attr('id').substr(10);
        let nickname = $overlay.find('.usernameAndStatus .username').first().text().trim();
        let href = "forums/801/create-thread?title={title}&message={message}";
        let tamplates = {'{title}': title, '{message}': message, '{nickname}': nickname, '{member_id}': member_id};
        for (let x in tamplates) {
            href = href.replace(x, tamplates[x]);
        }
        popup.addToMenu('<li><a class="LZTReportButton" target="_blank" href="'+ encodeURI(href) +'">' + (!(XenForo.visitor.language_id -1 )? 'Report': 'Пожаловаться') + '</a></li>')
    });
})();