Greasy Fork is available in English.
百度贴吧图片自动展开
当前为
// ==UserScript==
// @name 贴吧图片自动展开
// @namespace http://tampermonkey.net/
// @version 0.2
// @description 百度贴吧图片自动展开
// @author tlj
// @match *://tieba.baidu.com/*
// @grant none
// ==/UserScript==
document.addEventListener("mouseover", function(){
expandImg()
});
document.addEventListener("click", function(){
expandImg()
});
function expandImg(){
let arryImg=document.getElementsByClassName("replace_tip");
for(var i=0;i<arryImg.length;i++){
arryImg[i].click()
}
}