Remove Facebook Trending Topics

Hide the "Trending Topics" section of Facebook, reduce stress in your life.

// ==UserScript==
// @name         Remove Facebook Trending Topics
// @namespace    http://polybius.design
// @version      0.1
// @description  Hide the "Trending Topics" section of Facebook, reduce stress in your life.
// @author       Lumiras
// @match        https://www.facebook.com/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    var css = document.createElement("style");
    css.type = "text/css";
    css.innerHTML = "#pagelet_trending_tags_and_topics { display: none}";
    document.body.appendChild(css);
})();

QingJ © 2025

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