YT Bold title remover

removes the bold titles in YouTube videos

// ==UserScript==
// @name         YT Bold title remover
// @namespace    http://dsc.bio/jamsandwich47
// @version      0.1
// @description  removes the bold titles in YouTube videos
// @author       Kur0
// @match        https://www.youtube.com/watch?v=*
// @icon         https://www.google.com/s2/favicons?domain=youtube.com
// @grant        none
// ==/UserScript==

function wait_for_title(){
 if (document.querySelector("#info-contents > ytd-video-primary-info-renderer") !== null) {
     document.querySelector("#info-contents > ytd-video-primary-info-renderer").removeAttribute("use-yt-sans");
 }else{
  console.log('title not found');
 }


}

var interval1 = setInterval(wait_for_title, 1000)

QingJ © 2025

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