Facebook Block Sponsored figuccio

rimuove Sponsoredon right Facebook

// ==UserScript==
// @name            Facebook Block Sponsored figuccio
// @namespace       https://gf.qytechs.cn/users/237458
// @version         0.9
// @author          figuccio
// @description     rimuove Sponsoredon right Facebook
// @match           https://*.facebook.com/*
// @run-at          document-start
// @grant           GM_addStyle
// @icon            https://facebook.com/favicon.ico
// @license         MIT
// ==/UserScript==
(function() {
    'use strict';
 //nasconde  la scritta sponsorizzato maggio 2025
GM_addStyle('.x1n2onr6.x1iyjqo2.xdt5ytf.x78zum5 > .x1y1aw1k > div:nth-of-type(1) > div > .x1n2onr6{display:none!important;}');

    function hideSponsoredSections() {
        var sponsor = document.querySelectorAll('[aria-label="Inserzionista"]');
        sponsor.forEach(function(sponsor) {
            sponsor.style.display = 'none';
        });
    }

    hideSponsoredSections();

    // Observe changes in the DOM to hide sections if added later via AJAX
    var observer = new MutationObserver(function(mutationsList) {
        for (var mutation of mutationsList) {
            if (mutation.type === 'childList') {
                hideSponsoredSections();
            }
        }
    });

    observer.observe(document.body, {
        childList: true,
        subtree: true
    });

  
})();

QingJ © 2025

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