上一主题 下一主题
ScriptCat,新一代的脚本管理器脚本站,与全世界分享你的用户脚本油猴脚本开发指南教程目录
返回列表 发新帖

有没有大佬帮我改进一下的 我已经去掉了付费提示了

[复制链接]

该用户从未签到

2

主题

1

回帖

7

积分

助理工程师

积分
7
发表于 6 天前 | 显示全部楼层 | 阅读模式

本帖最后由 3278246155 于 2025-2-15 13:57 编辑

image.png
// ==UserScript==
// @name 立升教育付费提示隐藏(改进版)
// @namespace http://tampermonkey.net/
// @version 3.1
// @description 移除会员提示和付费遮罩,并通过 CSS 覆盖消除模糊效果,保留题目及选项
// @match http://www.fjlsjy123.com/inteHub/*
// @grant none
// ==/UserScript==

(function() {
'use strict';

// 移除会员提示:只删除包含“开通会员”文本的 vip 提示元素
const removeMembershipTip = () => {
    document.querySelectorAll('uni-view.vip-question-tip.flex-cc').forEach(el => {
        if(el.textContent.includes('开通会员')) {
            el.remove();
        }
    });
};

// 移除右侧付费区块:根据内联样式中包含 translate(108% 来定位
const removePayBlock = () => {
    document.querySelectorAll("uni-swiper-item[style*='translate(108%']").forEach(el => el.remove());
};

// 覆盖模糊效果:对于 exam-title 及其他非会员提示的 gaussian-blur 元素,清除滤镜
const removeBlurStyle = () => {
    // 题目区域:通常同时拥有 exam-title 与 gaussian-blur
    document.querySelectorAll('uni-view.exam-title.gaussian-blur').forEach(el => {
        el.style.filter = 'none';
        el.style.webkitFilter = 'none';
    });
    // 如果其他 gaussian-blur 元素不属于会员提示,则覆盖其 blur 样式
    document.querySelectorAll('uni-view.gaussian-blur').forEach(el => {
        if(!el.classList.contains('vip-question-tip')) {
            el.style.filter = 'none';
            el.style.webkitFilter = 'none';
        }
    });
};

// 使用 MutationObserver 监控动态加载的内容
const observer = new MutationObserver(() => {
    removeMembershipTip();
    removePayBlock();
    removeBlurStyle();
});
observer.observe(document.body, { childList: true, subtree: true });

// 初始执行一次
removeMembershipTip();
removePayBlock();
removeBlurStyle();

})();

  • TA的每日心情
    无聊
    2025-1-31 20:04
  • 签到天数: 195 天

    [LV.7]常住居民III

    745

    主题

    6465

    回帖

    7159

    积分

    管理员

    非物质文化遗产社会摇传承人

    积分
    7159

    荣誉开发者喜迎中秋油中2周年生态建设者

    发表于 6 天前 | 显示全部楼层
    这种基本还是要靠哥哥自己写的
    hh
    混的人。
    ------------------------------------------
    進撃!永遠の帝国の破壊虎---李恒道

    入驻了爱发电https://afdian.com/a/lihengdao666
    回复

    使用道具 举报

    发表回复

    本版积分规则

    快速回复 返回顶部 返回列表