本帖最后由 anwen 于 2024-12-13 21:51 编辑
事故
事情是这样的,今天群友自己开播了,就发了个链接,进去瞅了一眼
由于网页卡了一下点击了一下鼠标,正好点到了礼物上面 给送出去了.....MMP 退钱!
(这也不是第一次第二次第三次了 好多次了,网页端就是很容易点错送出去礼物...不光我自己好多群友也是,之前都是1毛的 也就无所谓了这次点到了个10块的 呜呜呜 一顿饭没了..)
- 彻底根治的办法就是别充钱在钱包里面...这样点到了也不怕 哈哈...
如果需要赠送礼物在右侧的 更多礼物 里面去点击就好~咱又不是什么土豪也不那么频繁送礼物
代码
之前早就想办它了...一直没管,由于不是专业编程人员的菜鸡一直没搞..
奈何不会写代码,又菜又爱玩的我就拿 ChatGPT写了一个...(也拿ChatGPT写了不少其它 小脚本 可能对于大佬来说闭着眼也能的 哈哈)
还是懂一点儿点儿点儿......点儿的 知道如何定位 css ,F12看到是 fIHFYwJt ,然后提交给ChatGPT就行了....再自己添加一下
- (目前自己使用没看到加个
display:none 有什么影响)
<div class="fIHFYwJt" data-e2e="gifts-container">
<div class="Go1N18qE jB02gxSe IhbuZrNM Y4MTL_BH PrWRXhrd gift_item_gift_bar">
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
</div>
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
<div class="Go1N18qE jB02gxSe IhbuZrNM Y4MTL_BH PrWRXhrd gift_item_gift_bar">
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
</div>
</div>
至于进入直播间入口我发现了三种 分别是直接进入 ,关注进入 ,推荐进入 链接都是不一样的,目前只看到了这三种,
- 如果有其它的欢迎补充一下,自己在
@match 照着添加一个就可以生效
// ==UserScript==
// @name 屏蔽抖音网页版礼物栏
// @namespace https://live.douyin.com/660292215268
// @version v0.0.1
// @description 抖音网页端在看的时候容易点到礼物送出去
// @author By anwen
// @match https://live.douyin.com/*
// @match https://www.douyin.com/root/live/*
// @match https://www.douyin.com/follow/live/*
// @icon https://lf3-static.bytednsdoc.com/obj/eden-cn/666eh7nuhfvhpebd/douyin_web/douyin_web/pwa_v3/512_512.png
// @grant none
// ==/UserScript==
(function() {
'use strict';
function hideElements() {
const elements = document.querySelectorAll('div.fIHFYwJt');
elements.forEach(el => {
el.style.display = 'none';
});
}
const observer = new MutationObserver(mutations => {
mutations.forEach(mutation => {
if (mutation.addedNodes.length) {
hideElements();
}
});
});
observer.observe(document.body, {
childList: true,
subtree: true
});
hideElements();
})();
效果预览图
麻麻再也不用担心切换快的时候不小心点错了....
结语&添加
也欢迎大佬优化的更好一些 嘿嘿~ 有需要的自取吧添加方式也简单,新建然后复制代码进去 Ctrl+S 保存就好
|