绯月防自爆脚本

一键口球自己

// ==UserScript==
// @name         绯月防自爆脚本
// @namespace    https://greasyfork.org/zh-CN/users/453092
// @version      0.4
// @description  一键口球自己
// @author       ikarosf
// @include     https://*kfmax.com/*
// @include     https://*kforz.com/*
// @include     https://*bakabbs.com/*
// @include     https://*365gal.com/*
// @include     https://*365galgame.com/*
// @include     https://*fygal.com/*
// @include     https://*kfgal.com/*
// @include     https://*miaola.info/*
// @include     https://*9shenmi.com/*
// @icon         https://www.google.com/s2/favicons?domain=kfmax.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $("input[type='submit'][value='确定发表'],input[type='submit'][value='回复帖子']").click(function(event){
        alert('您已被自己禁言!');
        event.preventDefault();
        return false;
    });
    // Your code here...
})();