Remove Line Script

Remove specific line with class "svgIcon nyCapIcon"

目前為 2023-12-19 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Remove Line Script
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Remove specific line with class "svgIcon nyCapIcon"
// @author       You
// @match        https://zelenka.guru/*
// @match        https://lzt.market/*
// @match        https://lolz.guru/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Найти элемент с указанным классом и удалить его
    var elementToRemove = document.querySelector('.svgIcon.nyCapIcon');
    if (elementToRemove) {
        elementToRemove.remove();
    }
})();

QingJ © 2025

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