Skip to content

Instantly share code, notes, and snippets.

@kzelda
Last active November 23, 2016 13:34
Show Gist options
  • Save kzelda/a3cfbdeb9b7721b526aa to your computer and use it in GitHub Desktop.
Save kzelda/a3cfbdeb9b7721b526aa to your computer and use it in GitHub Desktop.
Masquer les vidéos proposées -à droite - par youtube
// ==UserScript==
// @name remove-videos-proposées
// @namespace kMonkey
// @description Masquer la zone vidéos proposées
// @include https://www.youtube.com/watch?v=*
// @version 1
// @grant none
// ==/UserScript==
try{document.querySelector("#watch7-sidebar-contents").remove();}catch(e){}
setInterval(function(){
if(document.querySelector("#watch7-sidebar-contents") !== null) document.querySelector("#watch7-sidebar-contents").remove();
},1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment