Greasy Fork

Greasy Fork is available in English.

Report thread spammers

Adds button to report thread and user.

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Report thread spammers
// @namespace    pxgamer
// @version      0.4
// @description  Adds button to report thread and user.
// @author       pxgamer
// @include      *kat.cr/community/show/*
// @require      http://greasyfork.icu/scripts/19550-get-user-hash/code/Get%20User%20Hash.js?version=124786
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    $('a.ka.ka16.ka-report.ka-red[title="Report thread"]').after(' <a class="ka ka16 ka-report reportSpammer" style="background: #8B0000;" title="Report thread spammer"></a>');
    var threadRep = $('#report_thread_div form').attr('action');
    var username  = $('div[id^="post"]:first .commentbody div.userPicSize100px .badge .badgeInfo .badgeUsernamejs a.plain[href^="/user/"]').text();
    var userHash  = guh(username);

    $('.reportSpammer').on('click', function() {
        // Report thread
        $.ajax({
            type: "POST",
            url: threadRep,
            data: { reason: "Thread Spammer" }
        });

        // Report user
        $.ajax({
            type: "POST",
            url: "/account/report/"+userHash+"/",
            data: { reason: "Thread Spammer" }
        });

        //Refresh to complete.
        location.refresh();
    });

})();