Sleazy Fork is available in English.

sis001 remove noSselect

try to take over the world!

Fra og med 02.03.2020. Se den nyeste version.

// ==UserScript==
// @name         sis001 remove noSselect
// @namespace    https://sis001.com/
// @version      0.1
// @description  try to take over the world!
// @author       cccp Huzzah Ура
// @match        https://sis001.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
   //querySelectorAll
    //querySelector
    var postContainers = document.querySelectorAll("div.t_msgfont");
/*

for (i = 0; i < postContainers.length; i++){

        postContainers[i].classList.remove('is-active');



    }

/////

for (var item of postContainers) {
    item.classList.remove('is-active');
}


*/
    if(postContainers&&postContainers.length>0){

        [].forEach.call(postContainers, function(div) {
            // do whatever
            div.classList.add('ahaha');
           div.classList.remove('noSelect');
        });



    }




})();