Advertisement
Guest User

Untitled

a guest
Jun 8th, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name     Tubaro no comments
  3. // @version  1
  4. // @grant    none
  5. // @include  https://tubaro.aperu.net/*
  6. // ==/UserScript==
  7.  
  8. (function() {
  9.     function addCss(cssString) {
  10.         var head = document.getElementsByTagName('head')[0];
  11.     var newCss = document.createElement('style');
  12.         newCss.type = "text/css";
  13.         newCss.innerHTML = cssString;
  14.         head.appendChild(newCss);
  15.     }
  16.  
  17.   for (const elem of document.getElementsByClassName("videoListo-elektoj-ordo-ero")) {
  18.     if (elem.classList.contains('ero-3el6') ||
  19.        elem.classList.contains('ero-6el6')) {
  20.       elem.style.display = "none";
  21.     } else {
  22.       elem.style.width = "50%";
  23.         elem.classList.replace('ero-2el6', 'ero-3el6');
  24.         elem.classList.replace('ero-5el6', 'ero-6el6');
  25.     }
  26.   }
  27.  
  28.   addCss('.videoListo-ero-komentoj { display: none !important; }');
  29.   addCss('#comments { display: none !important; }');
  30. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement