富聊审核脚本

try to make work easy

Verze ze dne 25. 12. 2018. Zobrazit nejnovější verzi.

// ==UserScript==
// @name         富聊审核脚本
// @namespace    http://tampermonkey.net/
// @version      4.2
// @description  try to make work easy
// @author       yinchengnuo
// @match        http://*/*
// @grant        none
// ==/UserScript==
/* jshint -W097 */
(function($) {
    const $refresherInsert = (bool) => {
        $('<div class="refresh" title="鼠标右键查看帮助" style="width: 70px; height: 17px; overflow: hidden; position: fixed; right: 0px; top: 0px; border: 1px solid black; border-radius: 8px; opacity: 0.5; font-size: 12px;"><button class="refresherLeft" style="font-size: 10px; box-sizing: border-box; width: 24px; height: 17px; padding: 0px; float: left; cursor: pointer;">O</button><input class="refresherCenter" maxlength="3" placeholder = "s" type="text" style="box-sizing: border-box; width: 22px; height: 17px; text-align: center; float: left; font-size: 10px;"></input><button class="refresherRight" style="font-size: 10px; box-sizing: border-box; width: 22px; height: 17px; padding: 0px; float: left; cursor: pointer;">F</button></div>').appendTo("body");
        const showTime = $(".refresherCenter");
        let timer = null;
        $(".refresh").on("click", "button", function() {
            if (this.className === "refresherLeft") {
                clearInterval(timer);
                const time = parseInt(showTime.val());
                if (time && time >= 10) {
                    document.cookie = `time=${time};`;
                    let value = time;
                    timer = setInterval(() => {
                        value--;
                        showTime.val(value);
                        if (value === 0) {
                            location.reload();
                        }
                    }, 1000);
                } else {
                    alert("请输入大于等于10的纯数字");
                    showTime.val("20");
                }
            } else if (this.className === "refresherRight") {
                clearInterval(timer);
                showTime.val("");
                document.cookie = "time=0;";
            }
        });
        $(".refresh").on("contextmenu", () => {
            alert("    1 当前自动刷新器可在富聊后台审核系统的部分页面上使用,设定一个不小于10的数字作为自动刷新间隔。不建议过大。设定时间之后点击ON按钮,开始进入自动刷新模式。自动刷新器上面显示的数字就是距离下次页面刷新的时间。点击OFF按钮终止自动刷新。如果当前浏览器打开了多个页面都在使用当前自动刷新器,则对一个页面的刷新间隔修改会影响所有正在使用当前定时刷新器的刷新间隔。(既如果点击了某一个正在运行自的自动刷新器的OFF按钮,则所有正在使用当前定时刷新器的页面会在当前时间间隔结束时退出自动刷新模式。)\n    2 当前自动刷新器的存在主要是为了配合在常规和文字类部分模块审核时增加的进审提醒功能。当设定了固定的自动刷新时间,页面刷新后,如果有新的内容进审则当前选项卡的title会一直闪烁显示进审,提示当前页面有新内容进审。同时自动刷新不会停止。当点击了正在闪烁提醒的选项卡时,自动刷新自动停止,只有当当前进审内容提交之后,自动刷新模式才会重新开启,时间为之前设置的时间间隔。设置了进审提醒的模块有所有常规, 封面审核,私聊广告消息,敏感词报警处理。\n    3 在使用进审提醒时,一些有下级的模块(如头像审核中有“已认证”和“其他”两个下级模块), 应当将这些下级模块都在浏览器的新选项卡打开,(视频介绍和敏感词报警的各四个下级模块也不例外),否则会影响提醒效果!");
            return false;
        });
        if (document.cookie.match(/time=\d+/g)) {
            const time = parseInt(document.cookie.match(/time=\d+/g)[0].match(/\d+/g)[0]);
            if (time) {
                let value = time;
                showTime.val(value);
                timer = setInterval(() => {
                    value--;
                    showTime.val(value);
                    if (value === 0) {
                        location.reload();
                    }
                }, 1000);
            }
        }
        if (bool) {
            const title = $("title").html();
            let i = 0;
            setInterval(function() {
                if (i % 2 == 0) {
                    $("title").html(title);
                } else {
                    $("title").html("进审");
                }
                i++;
                if (document.hidden === false) {
                    clearInterval(timer);
                }
            }, 500);
        }
    };
    const setSize = (width) => {
        let bite = 1.8;
        $("img").filter(function(i, e) {
            if (e.width > 100) {
                e.style.width = width + "px";
                e.style.height = width * bite + "px";
            } else {
                e.style.float = "right";
                e.style.width = "10x";
            }
        });
    }
    const setButtonSize = (size) => {
        $("table input:visible").css({
            "width": size / 3 + "px",
            "padding": "0",
            "margin": "0",
            "float": "left"
        }).filter(function(i, e) {
            if (e.value == "荐" || e.value == "拉黑" || e.value == "取荐") {
                e.style.display = "none";
            } else if (e.value == "推流" || e.value == "禁播") {
                e.style.width = size / 3 + "px";
                e.style.float = "right";
            }
        });
    }
    const setTitleSize = (size) => {
        $("tbody tr:nth-child(2) td a").css({
            "display": "inline-block",
            "width": size / 3 - 6 + "px",
            "height": "12px",
            "line-height": "12px",
            "overflow": "hidden"
        }).each(function(i, e) {
            $(e).parent().parent().parent().attr("title", $(e).html());
        });
    }
    const enterLogin = (btn) => {
        $(document).one('keydown', function(e) {
            if (e.key === "Enter") {
                btn.click();
            }
        });
    }
    const cancelAnimate = () => {
        $(':animated').stop(true, true);
    }
    if (location.href.match(/userHeadPicAction!userHeadCheckWomanRenzhen/g) || location.href.match(/userHeadPicAction!userHeadCheckAll/g) || location.href.match(/auditUserAciton!photoNoneblogindex/g) || location.href.match(/groupChatPicAction!listUntreated/g) || location.href.match(/groupAction!auditindex/g) || location.href.match(/videoLivePic!liveAutoReviewList/g) || location.href.match(/userFilterwordAction!index/g) || location.href.match(/videoFile!videoFileAuditList/g)) {
        enterLogin($('a[title="提交"]').first().length ? $('a[title="提交"]').first() : $('a[title="操 作"]').first());
        $("img").length > 2 ? $refresherInsert(true) : $refresherInsert();
    } else if (location.href.match(/videoLivePic!getHotLiveVideoList/g)) {
        $("img").length > 0 ? $refresherInsert(true) : $refresherInsert();
    } else if (location.href.match(/smallVideoAudit!getAuditList/g)) {
        enterLogin($('a[title="提交"]').first());
        $(".box").length > 0 ? $refresherInsert(true) : $refresherInsert();
    } else if (location.href.match(/imMsgAction!toAuditList/g)) {
        setTimeout(() => {
            if ($(".pag")[0].offsetHeight > 51 || $(".pag")[1].offsetHeight > 51 || $(".pag")[2].offsetHeight > 51) {
                $refresherInsert(true);
                $(".content_div input:button").click(() => {
                    setTimeout(() => {
                        location.reload();
                    }, 500);
                });
            } else {
                $refresherInsert();
            }
        }, 500);
    } else if (location.href.match(/videoLiveAuditAction!videoliveScreenAuditList/g)) {
        $(".toolbar .btn_blue").first().add('.toolbar .btn_blue:nth-child(1)').click(function() {
            $(".toolbar .btn_blue").hide();
            $(".loading").css("display", "block");
            let i = 0;
            setInterval(() => {
                if (i % 4 == 0) {
                    $(".loading").html("loading");
                } else if (i % 4 == 1) {
                    $(".loading").html(". loading .");
                } else if (i % 4 == 2) {
                    $(".loading").html(". . loading . .");
                } else if (i % 4 == 3) {
                    $(".loading").html(". . . loading . . .");
                }
                i++;
            }, 200);
            document.cookie = `refreshTimes=${parseInt(document.cookie.match(/refreshTimes=\d+/g)[0].match(/\d+/g)[0]) + 1};`;
            document.cookie = `total=${parseInt(document.cookie.match(/total=\d+/g)[0].match(/\d+/g)[0]) + $('.content_div table').length};`;
        });
        document.onreadystatechange = () => {
            if (document.readyState == "complete") {
                 $('<div class="mytool"style="float:right; margin: 8px 0px;font-size: 12px; position: absolute; right: 160px; bottom: 0px;"><span class="how" style="font-size: 8px; color: blue; cursor: pointer; ">如何使用?</span><span style="font-weight:bold;"> 当前页面停留时间:</span><span class="keepTime" style="color:red; min-width: 14px; display:inline-block;font-weight:bold;text-align:right;">0</span><span> 秒 </span><span style="font-weight:bold;"> 刷新次数:</span><span class="refreshTimes" style="color:red;display:inline-block;font-weight:bold;text-align:right;">0</span><span> 次 </span><span style="font-weight:bold;"> 已审核:</span><span class="total" style="color:red;display:inline-block;font-weight:bold;text-align:right;">0</span><span> 张 </span><label for="autInput" style="font-weight:bold; cursor: pointer; ">图片尺寸:</label><input id="autInput" type="input" style="width:22px; height:16px; font-size: 12px; cursor: pointer; "><span>(px)</span><label for="hdButton" style="font-weight:bold; cursor: pointer; "> 隐藏按钮:</label><input id="hdButton" type="checkbox" style="vertical-align: middle; cursor: pointer; width: 12px; height: 12px;">&nbsp&nbsp<label for="dbClick" style="font-weight:bold; cursor: pointer; ">双击页面换一批:</label><input id="dbClick" type="checkbox" style="vertical-align: middle; cursor: pointer; width: 12px; height: 12px;"></div>').appendTo(".toolbar:last");
                let keepTime = 0, size, db, hd, refreshTimes = 0, demon = 0, total = 0;
                setInterval(() => {
                    $(".keepTime").html(keepTime);
                    keepTime++;
                }, 1000);
                enterLogin($(".btn_blue").first());
                $('.close').hide();
                $((".showpic tbody tr:nth-child(3) input:visible")).click(function() {
                    setTimeout(() => {
                        cancelAnimate();
                        const target = this.parentNode.parentNode.parentNode.parentNode;
                        if (target.offsetLeft + target.offsetWidth + 300 > document.body.offsetWidth) {
                            console.log($('.showbox:visible'));
                            $('.showbox:visible')[0].style.left = target.offsetLeft - 300 + 'px';
                            $('.showbox:visible')[0].style.top = target.offsetTop + 80 + 'px';
                        } else {
                            console.log($('.showbox:visible'));
                            $('.showbox:visible')[0].style.left = target.offsetLeft + target.offsetWidth + 'px';
                            $('.showbox:visible')[0].style.top = target.offsetTop + 80 + 'px';
                        }
                        $('.showbox:visible').on('click', 'input', function(e) {
                            cancelAnimate();
                        });
                    }, 10);
                });
                if (document.cookie.match(/size=\d+/g) && document.cookie.match(/db=\d/g) && document.cookie.match(/hd=\d/g) && document.cookie.match(/refreshTimes=\d+/g) && document.cookie.match(/demon=\d+/g) && document.cookie.match(/total=\d+/g)) {
                    size = parseInt(document.cookie.match(/size=\d+;/g)[0].match(/\d+/g)[0]);
                    db = parseInt(document.cookie.match(/db=\d;/g)[0].match(/\d/g)[0]);
                    hd = parseInt(document.cookie.match(/hd=\d;/g)[0].match(/\d/g)[0]);
                    refreshTimes = parseInt(document.cookie.match(/refreshTimes=\d+/g)[0].match(/\d+/g)[0]);
                    demon = parseInt(document.cookie.match(/demon=\d+/g)[0].match(/\d+/g)[0]);
                    total = parseInt(document.cookie.match(/total=\d+/g)[0].match(/\d+/g)[0]);
                    $('.refreshTimes').html(refreshTimes);
                    $('.total').html(total);
                    setSize(size);
                    setButtonSize(size);
                    setTitleSize(size);
                    $('.refreshTimes').html(refreshTimes);
                    $("#autInput").val(size);
                    if (db) {
                        $("#dbClick").attr("checked", true);
                        $(document).one('dblclick', () => {
                            $(".btn_blue").first().click();
                        });
                    }
                    if (hd) {
                        $("#hdButton").attr("checked", true);
                        $("table input:visible").add(".showpic tbody tr:nth-child(3)").addClass('hidebtn').hide();
                    }
                    if (demon) {
                        if (demon == keepTime) {
                            $(".btn_blue").first().click();
                        }
                    }
                } else {
                    document.cookie = "size=131;";
                    document.cookie = "db=0;";
                    document.cookie = "hd=0;";
                    document.cookie = 'refreshTimes=0;';
                    document.cookie = 'demon=0;';
                    document.cookie = 'total=0;';
                    $("#autInput").val(131);
                    setSize(131);
                    setButtonSize(130);
                    setTitleSize(130);
                }
                $(".mytool").on("click", "input", function(e) {
                    if (this.id === 'dbClick') {
                        if ($(this).is(':checked')) {
                            document.cookie = "db=1;";
                        } else {
                            document.cookie = "db=0;";
                        }
                    } else if (this.id === 'hdButton') {
                        if ($(this).is(':checked')) {
                            document.cookie = "hd=1;";
                        } else {
                            document.cookie = "hd=0;";
                        }
                    }
                });
                $(".how").click(function() {
                    alert("    1 图片尺寸设置即直播截屏宽度设置,设置不同的宽度会按照图片原有比例对应设置图片高度。。可根据个人喜好和电脑屏幕宽高设置,设置自定义宽度须先点击自定义按钮,随后进行设置。设置值为大于等于130小于等于25的纯阿拉伯数字。\n    2当前脚本对截屏审核界面做了比较大的改动,为了尽可能多的展示图片内容。隐藏掉了 拉黑 推荐 按钮,并且将用户昵称,才艺,PK中,接收方,发起方这些文字信息做了简短处理。但是如果想查看完整的用户昵称信息,只需要将鼠标悬停在经过处理的昵称上就可以了。\n    4 双击页面换一批为,当选中开启后,在页面的任意地方双击会触发 换一批 按钮的单击执行。默认为关闭!\n 以上所有效果均为在当前页面设置,在提交 换一批 之后的所有此页面上生效。关闭当前选项卡之后所有设置的参数会被清空,再次打开请重新设置!\n    5 当鼠标移动到需要处罚的用户时,可以触发快捷键。鼠标移出时失效Q警告,W下榜E禁播R推流T换一批,同时键盘回车可以换一批,鼠标右键也可以推流\n    6  隐藏按钮为当选中后用户界面的处罚按钮都会会被隐藏。此时,你可以选择用键盘操作处罚或者将鼠标移到要处罚的用户点击鼠标中键显示按钮!");
                });
                $("#autInput").mousedown(function() {
                    this.value = '';
                });
                $("#autInput").prev().mousedown(function() {
                    $("#autInput").val('');
                });
                $("#autInput").blur(function() {
                    const value = parseInt(this.value);
                    if (value < 130) {
                        document.cookie = "size=130;";
                        this.value = 130;
                        alert("设定宽度过小,已经为你设置为130px");
                    } else if (parseInt(this.value.trim()) > 250) {
                        document.cookie = "size=250;";
                        this.value = 250;
                        alert("设定宽度过大,已经为你设置为250px");
                    } else if (value >= 130 && value <= 250) {
                        document.cookie = `size=${value};`;
                        this.value = value;
                    } else {
                        this.value = size;
                        alert("请输入设定宽度");
                    }
                });
                window.scrollTo(0, 72);
                $("body").css("-webkit-user-select", "none");
                $(".showpic").css({
                    "margin": "0px 2px",
                    "float": "none",
                    "display": "inline-block",
                    "margin-right": "-4px",
                    "min-height": "250px"
                }).children("table").css({
                    "width": "130px",
                    "margin": "0",
                    "height": "250px",
                    "padding": "0px"
                });
                $("tbody tr:nth-child(2) td font").each(function(i, e) {
                    e.style.display = "none";
                });
                $('span').each(function(i, e) {
                    if (e.innerHTML === '才艺') {
                        e.innerHTML = '';
                    } else if (e.innerHTML === 'PK') {
                        e.innerHTML = '';
                    } else if (e.innerHTML === '已推流') {
                        e.innerHTML = '已推';
                    }
                });
                $('.content_div').on('mouseover', 'table', function(e) {
                    this.tabIndex = 0;
                    this.focus();
                    this.style.outline = "blue solid 2px";
                    this.onkeydown = function(e) {
                        if (e.code == 'KeyQ') {
                            $(this).find('.btn_blue').filter(function(i, e) {
                                if (e.value == '警告') {
                                    $(e).click();
                                }
                            });
                        } else if (e.code == 'KeyW') {
                            $(this).find('.btn_blue').filter(function(i, e) {
                                if (e.value == '下榜') {
                                    $(e).click();
                                }
                            });
                        } else
                        if (e.code == 'KeyE') {
                            $(this).find('.btn_blue').filter(function(i, e) {
                                if (e.value == '禁播') {
                                    $(e).click();
                                }
                            });
                        } else if (e.code == 'KeyR') {
                            $(this).find('.btn_blue').filter(function(i, e) {
                                if (e.value == '推流') {
                                    $(e).click();
                                }
                            });
                        } else if (e.code == 'KeyT') {
                            this.onkeydown = null;
                            $('.btn_blue').first().click();
                        }
                    }
                    this.oncontextmenu = () => {
                        $(this).find('.btn_blue').filter(function(i, e) {
                            if (e.value == '推流') {
                                $(e).click();
                            }
                        });
                        return false;
                    };
                    this.onmousedown = (e) => {
                        if (e.button == 1) {
                            let newheight = parseInt($(this).find('img').first().css('height')) - 23;
                            $(this).find('img').first().css('height', newheight + 'px');
                            $(this).find('.hidebtn').show();
                            this.onmousedown = null;
                            return false;
                        }
                    };
                });
                $('.content_div').on('mouseleave', 'table', function(e) {
                    this.tabIndex = 9999;
                    this.blur();
                    this.style.outline = "none";
                    this.onkeydown = null;
                    this.oncontextmenu = null;
                    this.onmousedown = null;
                });
                $(".showpic tbody tr:nth-child(1)").css("height", "190px");
                $(".showpic tbody tr:nth-child(2)").css("height", "10px");
                $(".showpic tbody tr:nth-child(3)").css("height", "10px");
                $(".showpic tbody tr:nth-child(4)").css("height", "10px");
                $(".showpic tbody tr td").css("padding", "0px");
                $('<div class="loading" style="display: none; cursor: pointer; width: 200px; height: 40px; background: #f40; border-radius: 8px; opacity: 0.6; color: #fff; position: fixed; left: 50%; top: 50%; margin-left: -150px; margin-top: -20px; line-height: 40px; text-align: center; font-size: 28px;">loading</div>').appendTo("body");
            }
        }
    } else if (location.href.match(/videoLivePic!getSingleVideoLiveAuditList/g)) {
        let width = 132;
        let height = width * 1.77;
        $('<div class="mytool"style="float:right; margin: 8px 0px;font-size: 12px; position: absolute; right: 0px; top: 4px;"><span style="font-weight:bold;"> residence time:</span><span class="keepTime" style="color:red; min-width: 12px; display:inline-block;font-weight:bold;text-align:right;">0</span><span> s </span>&nbsp&nbsp</div>').appendTo("body");
        $('<div class="loading" style="display: none; cursor: pointer; width: 200px; height: 40px; background: #f40; border-radius: 8px; opacity: 0.6; color: #fff; position: fixed; left: 50%; top: 50%; margin-left: -150px; margin-top: -20px; line-height: 40px; text-align: center; font-size: 28px;">loading</div>').appendTo("body");
        let keepTime = 0;
        setInterval(() => {
            $(".keepTime").html(keepTime);
            keepTime++;
        }, 1000);
        enterLogin($(".btn_blue").first());
        $("body").css("-webkit-user-select", "none");
        setTimeout(() => {
            $('object').attr('width', width).attr('height', height);
            $('embed').attr('width', width).attr('height', height);
            $('div[id^="video"]').css('position', 'relative');
            $(document).one('dblclick', () => {
                $(".btn_blue").first().click();
            });
            $('div[id^="div"]').css('float', 'none').css('display', 'inline-block').css('min-height', '260px');
            $('.content_div>div>table div[id^="div"]>table').css('width', '130px')
            $('.content').css('margin-right', '0px').css('margin-bottom', '0px')
            $('.content_div>div>table').on('mouseenter', 'table', function() {
                $(this).find('div[id^="video"]').append('<div class= "hoverbutton" style="opacity: 0.8; position: absolute; right: 0; top:0; width:132px; height: 18px;"><button class ="warn" style="width: 44px; height: 20px; background-color: #2ae; color: #fff; box-sizing: border-box; cursor: pointer; border: 1px solid blue; border-radius: 8px;" type="button">警告</button><button style="width: 44px; height: 20px; background-color: #000; color: #fff; box-sizing: border-box; cursor: pointer; border: 1px solid #ccc; border-radius: 8px;" type="button" class ="black">拉黑</button><button style="width: 44px; height: 20px; background-color: #f0f; color: #fff; box-sizing: border-box; cursor: pointer; border: 1px solid #f40; border-radius: 8px;" type="button" class="sex">色情</button></div>');
                $('.warn').hover(function() {
                    $(this).css('color', '#2ae').css('background-color', '#fff');
                }, function() {
                    $(this).css('color', '#fff').css('background-color', '#2ae');
                });
                $('.black').hover(function() {
                    $(this).css('color', 'black').css('background-color', '#fff');
                }, function() {
                    $(this).css('color', '#fff').css('background-color', 'black');
                });
                $('.sex').hover(function() {
                    $(this).css('color', '#f0f').css('background-color', '#fff');
                }, function() {
                    $(this).css('color', '#fff').css('background-color', '#f0f');
                });
                $('.warn').click(function() {
                    $(this).parent().parent().parent().parent().parent().find('input:button:nth-child(1)').click();
                });
                $('.black').click(function() {
                    $(this).parent().parent().parent().parent().parent().find('input:button:nth-child(2)').click();
                });
                $('.sex').click(function() {
                    $(this).parent().parent().parent().parent().parent().find('input:button:nth-child(3)').click();
                });
            });
            $('.content_div>div>table').on('mouseleave', 'table', function() {
                $('.hoverbutton').hide();
                this.oncontextmenu = null;
            });
            $('.content_div>div>table div[id^="div"]>table tbody tr:nth-child(2) td a:nth-child(1)').hide()
            $('.content_div>div>table div[id^="div"]>table tbody tr:nth-child(3)').hide();
            $('.content_div>div>table:nth-child(2) div[id^="div"]>table tr:nth-child(4)').hide();
        }, 300);
        $(".toolbar .btn_blue").first().click(function() {
            $(".loading").css("display", "block");
            let i = 0;
            setInterval(() => {
                if (i % 4 == 0) {
                    $(".loading").html("loading");
                } else if (i % 4 == 1) {
                    $(".loading").html(". loading .");
                } else if (i % 4 == 2) {
                    $(".loading").html(". . loading . .");
                } else if (i % 4 == 3) {
                    $(".loading").html(". . . loading . . .");
                }
                i++;
            }, 200);
        });
    } else if (location.href.match(/videoLiveAuditAction!videoliveFlowAuditList/g)) {
        let width = 153;
        let height = width * 1.77;
        $("body").css("-webkit-user-select", "none");
        const rander =  () => {
            enterLogin($(".btn_blue").first());
            $('span').each(function(i, e) {
                if (e.innerHTML === '才艺') {
                    e.innerHTML = '才';
                } else if (e.innerHTML === 'PK') {
                    e.innerHTML = '';
                }
            });
            setTimeout(() => {
                $('object').attr('width', width).attr('height', height);
                $('embed').attr('width', width).attr('height', height);
                $('.content td').css('padding', '0');
                $('div[id^="div"]:visible').css('float', 'none').css('display', 'inline-block').css('min-height', '260px');
                $('.content_div>table div[id^="div"]>table').css('width', '153px')
                $('.content').css('margin-right', '0px').css('margin-bottom', '0px')
                $('.content_div>table div[id^="div"]>table tr:nth-child(4) td').children(':visible:not("a")').css('float', 'left').css('width', '43px').css('margin', '0');
                $('.content_div>table div[id^="div"]>table tr:nth-child(2) a').css('float', 'left').css('width', '60px').css('white-space', 'nowrap').css('overflow', 'hidden');
                $('.content_div>table div[id^="div"]>table tr:nth-child(4) td').children('a').css('float', 'left')
                $('.content_div>table div[id^="div"]>table tr:nth-child(4) td img').css('width', '20px').css('height', '20px');
                $('.content_div>table div[id^="div"]>table tr:nth-child(4) a').click(function () {
                    setTimeout(() => {
                        rander();
                    }, 1400)
                })
                $('.content_div>table div[id^="div"]>table tr:nth-child(5) td').css('text-align', 'center').hover(function () {
                    $(this).css('background-color', '#ccc')
                }, function () {
                    $(this).css('background-color', '#fff')
                }).on('click', function () {
                    $(this).children('input').click((e) => {
                        e.stopPropagation();
                    });
                    $(this).children('input').click();
                });
            }, 300);
        }
        rander();
    } else if (location.href.match(/videoLiveAuditAction!videolivePKFlowList/g)) {
        let width = 340;
        let height = width * 1.77;
        setTimeout(() => {
               // $('object').attr('width', width).attr('height', height);
               // $('embed').attr('width', width).attr('height', height).css('position', 'absolute').css('left', '0px').css('top', '-180px');;
               // $('div[id^="video"]').css('width', width + 'px').css('height', width / 2 * 1.77 + 'px').css('position', 'relative').css('overflow', 'hidden');;
            }, 300);
    }
})(window.parent.$);