【脚本定制】求一个可以屏蔽名片弹出的脚本
众所周知,在泥潭把鼠标移动到头像上时会弹出个人信息的名片。但是因为之前装了赠礼脚本,名片一不小心点到就容易损失金币和咒术。
同时也容易点错到其他上面。可以说是基本没什么用。。。所以想找一个可以屏蔽泥潭名片的小脚本。
举个例子
我不想要视奸他时名片弹出来。
本帖最后由 风岚 于 2025-2-27 09:48 编辑
试试这个吧
@Name
// ==UserScript==
// @name 隐藏名片
// @namespace http://tampermonkey.net/
// @version 0.1
// @description隐藏各处名片
// @author 风岚
// @match *://www.gamemale.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict'
const style = document.querySelector('style')
style.innerHTML += `.card,.p_pop.blk.bui{display:none!important;}`
document.head.appendChild(style)
})()
本帖最后由 user_login 于 2025-2-28 02:02 编辑
想要不被误以为是痴汉用这个更好。不是隐藏而是不会弹出。
想顺手做空间访问的任务的话还是隐藏更好
@Name 又修改了一下,通用地匹配更多场景// ==UserScript==
// @name 我不是痴汉
// @version 2025-02-28
// @description头像不弹小卡片
// @author u
// @match https://www.gamemale.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.onload=()=>document.querySelectorAll('a').forEach((e)=>e.replaceWith(e.cloneNode(true)));
})();
页:
[1]