sis001 helper

sis001 remove noSselect and replace all a tags domain to sis001.com

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         sis001 helper
// @namespace    https://sis001.com/
// @version      0.5
// @description  sis001 remove noSselect and replace all a tags domain to sis001.com
// @author       cccp Huzzah Ура
// @match        *://*.sis001.com/*
// @match        *://154.84.5.250/*
// @match        *://154.84.5.235/*
// @match        *://154.84.5.249/*
// @match        *://ecj.sisurl.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';


    var postContainers = document.querySelectorAll("div.t_msgfont");
    if(postContainers&&postContainers.length>0){
        [].forEach.call(postContainers, function(div) {
           div.classList.remove('noSelect');
            var aTags = div.querySelectorAll("a");
            if (aTags&&aTags.length){
                    //aTags.forEach((elem) => {
                   [].forEach.call(aTags, function(elem) {
                   var href = elem.getAttribute('href');
                    if ( href.includes('68.168.16.151') ) {
                        elem.setAttribute('href', href.replace('68.168.16.151','sis001.com'))
                    }
                    if(href.includes('69.4.239.124')){
                     elem.setAttribute('href', href.replace('69.4.239.124','sis001.com'))
                    }
                    if(href.includes('67.220.92.22')){
                     elem.setAttribute('href', href.replace('67.220.92.22','sis001.com'))
                    }
                    if(href.includes('67.220.91.29')){
                     elem.setAttribute('href', href.replace('67.220.91.29','sis001.com'))
                    }
                    if(href.includes('66.90.68.150')){
                     elem.setAttribute('href', href.replace('66.90.68.150','sis001.com'))
                    }
                     if(href.includes('38.103.161.149')){
                     elem.setAttribute('href', href.replace('38.103.161.149','sis001.com'))
                    }
                });
            }

        });



    }




})();