Greasy Fork is available in English.
应对2022年10月11日fb资料库视频和图片尺寸缩小导致看不清的脚本,3秒定时器执行,视频默认100%,图片默认349px,可以自行修改。 脚本随缘更新,[email protected]
当前为
// ==UserScript== // @name FB资料库视频图片高度脚本 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 应对2022年10月11日fb资料库视频和图片尺寸缩小导致看不清的脚本,3秒定时器执行,视频默认100%,图片默认349px,可以自行修改。 脚本随缘更新,[email protected] // @author LYL // @icon https://www.google.com/s2/favicons?sz=64&domain=facebook.com // @include *://www.facebook.com/ads/library/* // @license MIT // @grant none // ==/UserScript== (function() { 'use strict'; console.log("FB资料库视频图片高度脚本启动"); //视频尺寸 var videoHeight = "100%"; //图片限高 var imgMaxHeight = "349px"; timer = setInterval(function() { //修改视频尺寸 var videoElearr = document.getElementsByTagName("video"); for(var i=0; i< videoElearr.length; i++){ videoElearr[i].setAttribute("style","height:"+videoHeight+"!important;"); }; //修改图片限高 var imgElearr = document.getElementsByClassName("x1ll5gia"); for(var j=0; j< imgElearr.length; j++){ imgElearr[j].setAttribute("style","max-height:"+videoHeight+"!important;"); }; }, 3000) //setTimeout(function(){changeStyle1();},1000); })();