Hide YouTube Recommandations In Home Page

Time is Precious

目前為 2022-05-04 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Hide YouTube Recommandations In Home Page
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Time is Precious
// @author       You
// @match        *://www.youtube.com/
// @match        *://www.youtube.com/?*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    const newStyle = document.createElement("style")
    newStyle.innerHTML = `
    .ytd-app.style-scope[role='navigation'], #primary {
        display: none;
    }
    `
    document.head.appendChild(newStyle)
    // Your code here...
})();

QingJ © 2025

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