Advertisement
emerginginstance

Untitled

Nov 16th, 2022
2,487
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         YT Ambient blocker
  3. // @namespace    http://tampermonkey.net/
  4. // @version      1.0
  5. // @description  Disables ambience in YT
  6. // @author       You
  7. // @match        https://*.youtube.com/*
  8. // @icon         https://www.google.com/s2/favicons?sz=64&domain=youtube.com
  9. // ==/UserScript==
  10.  
  11. (()=>{
  12.     setInterval(()=>{
  13.         try {
  14.             let cinemactics=document.getElementById('cinematics')
  15.             cinemactics.parentNode.removeChild(cinemactics)
  16.         } catch{}
  17.     }, 500)
  18. })()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement