Advertisement
GochiSiyan

remove favorite watch later

Feb 24th, 2021
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. Array.from(document.getElementsByClassName('jeg_meta_option')).forEach(function(value,index){
  2. value.addEventListener('click',function(){
  3. timer = setInterval(function(){
  4. later = document.querySelector('[data-playlist-id="watch-later"]')
  5. favor = document.querySelector('[data-playlist-id="favorite"]')
  6. if (later && favor) {
  7. later.parentNode.style.display='none'
  8. favor.parentNode.style.display='none'
  9. clearInterval(timer)
  10. }
  11. },50)
  12. })
  13. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement