GC - Lab Ray - Safety First

Hide specific pets from the lab ray page so no accidental zapping!

当前为 2023-11-05 提交的版本,查看 最新版本

// ==UserScript==
// @name         GC - Lab Ray - Safety First
// @version      0.3
// @description  Hide specific pets from the lab ray page so no accidental zapping!
// @author       Mandi (mandanarchi), converted by dani
// @match        https://www.grundos.cafe/lab2/
// @grant        none
// @namespace https://gf.qytechs.cn/users/748951
// ==/UserScript==

(function() {
    'use strict';

    const DO_NOT_ZAP = [
'Britney',
'Miley',
'Grimes',
'Keshα',
'Nicki',
'Gerard',
'Frank',
'Ray',
'Mikey',
'Helena',
'Mousekat',
'Emo',
'Scene',
'Star',
'Jersey',
'Blegh',
'Explosivo',
'Ukulele',
'Blink',
'Kittie',
'Kurdt',
'Saturday',
'Juicebox',
'Sweetness',
'Hollywood',
'💔',
'💀',
'Guillotine',
'Flood',
'Buffy',
'Anya',
'Sookie',
'Exorcist',
'Sarian',
'Cyd',
'Binx',
'Charmmy',
'Candie',
'Kinsey',
'Migi',
'Boogs',
'Duff',
'Brink',
'Flubber',
'Nilbog',
'Ambrosius',
'Rodo',
'Shrooms',
'Jinx',
'CharƖie',
'Hurley',
'Oliver',
'Benji',
'Nacho',
'Stimpy',
'BunBun',
'Crystal'
];

    $('form[action="/lab/process/"] img').each( function() {
        if ($.inArray( $(this).attr('alt'), DO_NOT_ZAP) !== -1 ) {
            $(this).parent().remove();
        }
    });


})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址