Acrobatic_Taro_1984 | 1 points | May 14 2022 12:57:29
看到网页端右下角的GIF就烦,分享一段油猴脚本代码去除它!本鼠不会写代码,有更好的欢迎在评论区贴出来,谢谢// ==UserScript==
// @name removeGIF
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.reddit.com*
// @match https://www.reddit.com/r/CLTV/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=reddit.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
setInterval(function(){
var img = document.querySelector('._2vEf-C2keJaBMY9qk_BxVn ._3NeWg805wFgqPuE_-LZKN4 img')
if(img){
var parent = img.parentElement
parent.removeChild(img)
}
},2000)
})();
[-] MainInternational536 | 1 points | May 14 2022 13:17:52
ublock添加自定义规则
reddit.com##img[src="https://styles.redditmedia.com/t5_3ta5rx/styles/image_widget_55k9c1dn4dz81.png"]
[-] Acrobatic_Taro_1984 | 1 points | May 14 2022 13:24:28
谢谢!
[-] Puzzleheaded_Cap56 | 1 points | May 14 2022 13:46:44
这个GIF位置那么靠下,除非帖子回复量巨大,网页端也看不了吧。
一个帖子浏览关键信息就关闭了,你不说,我真还没注意到这个GIF。
[-] furry199564 | 1 points | May 14 2022 14:31:52
你这也太复杂了。。。用去广告插件有个点击选择屏蔽元素的功能,点一下就行了。。。
[-] realTsarOfRussia | 1 points | May 14 2022 12:59:27
我一直都是包蜜啊