FB资料库视频图片高度脚本

应对2022年10月11日fb资料库视频和图片尺寸缩小导致看不清的脚本,3秒定时器执行。视频默认100%,图片默认349px,可自行修改。 -脚本随缘更新

目前为 2022-10-12 提交的版本。查看 最新版本

// ==UserScript==
// @name         FB资料库视频图片高度脚本
// @namespace    http://tampermonkey.net/
// @version      0.23
// @description  应对2022年10月11日fb资料库视频和图片尺寸缩小导致看不清的脚本,3秒定时器执行。视频默认100%,图片默认349px,可自行修改。 -脚本随缘更新
// @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)
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址