NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Kanobu_For_Gamers // @version 0.1 // @description Скрипт убирает все новости, что не связанны с играми. Тип для вечно хнычущих сучек - "беее канобка только для игор, нафига тут блоггеры, бее-бее-бее". // @author saintfr3ak // @match https://kanobu.ru/ // @grant none // @license MIT // ==/UserScript== $(document).ready(nextpage()); function nextpage(){ var i = 0; var Interval = setInterval(function(){ clearnogames("news-info-category"); clearnogames("longread-info"); clearnogames("news-info-category-main"); clearnogames("longread-info--type"); }, 400); } function clearnogames(filter) { let divs = document.getElementsByClassName(filter); for (let x = 0; x < divs.length; x++) { let div = divs[x]; let divh = divs[x].closest("li.news-list-item"); let content = div.innerHTML.trim(); if (["Игры", "Киберспорт", "Косплей", "Мобильные игры", "Гайд"].includes(content) === false) { divh.style.display = "none"; } } }