Pastery

modification du bon vieu omnivox +

 1// ==UserScript== 2// @name         Fond d'ecran Omnivox 3// @namespace    http://greasespot.net/ 4// @version      0.5.5 5// @description  Remplace les fonds d'écrans d'Omnivox 6// @author       You 7// @run-at       document-body 8// @include      https://cegeprdl.omnivox.ca/Login/Account/* 9// @include      https://*.omnivox.ca/Login/Account/*10// @icon         https://www.google.com/s2/favicons?domain=omnivox.ca11// @grant        none12// ==/UserScript==1314(function() {15    'use strict';16    var photos = document.getElementsByClassName("carousel-item-identification-sso");17    var backgrounds = ['https://media.thetab.com/blogs.dir/90/files/2019/01/bunny-rabbit-rodent-hare-mammal-animal.jpeg',18                       'https://images.radio-canada.ca/q_auto,w_960/v1/ici-info/16x9/parti-conservateur-bernard-genereux-ottawa-depute-montmagny-lislet-kamouraska-riviere-du-loup.jpg',19                       'https://mommywithaplan.com/wp-content/uploads/2020/02/Best-Hot-Dog-Steamers.jpg']20    var premierBouton = document.getElementsByClassName("lien-premiere-util");21    var deuxiemeBouton = document.getElementsByClassName("lien-oubli-mdp");22    var side = document.getElementsByClassName("identification-intraflex");23    var deco = document.getElementsByClassName("message-logout");24    var inputs = document.getElementsByClassName("row no-margin")2526    if(deco.length != 0){27      deco[0].style.display = "none";28    }2930    if (photos.length == 0){31        var videoBackground = document.getElementById("background-video");32        if(videoBackground !== null)  videoBackground.remove();33       document.getElementsByTagName("body")[0].style.backgroundImage = 'url(' + backgrounds[0] +')';34    }35    else{36        var nbPhoto = photos.length;37        for (let i = nbPhoto - 1; i > 0; i--) {38            console.log(i);39            photos[i].remove();40        }4142        for (let i = 0; i < backgrounds.length; i++){43            document.getElementsByClassName("carousel-identification-sso")[0].append(photos[i].cloneNode(true));44            photos[i].style.backgroundImage = 'url(' + backgrounds[i] + ')';45            photos[i].classList.remove("visible");46            photos[i].classList.remove("enabled");47        }48        photos[backgrounds.length].remove();49        photos[0].classList.add("visible");50        photos[0].classList.add("enabled");51    }5253    console.log(photos.length);5455    try {56        document.getElementsByClassName("footer-identification-intraflex")[0].style.display = "none";57        document.getElementsByClassName("container-roles")[0].style.display = "none";58        document.getElementsByClassName("title")[0].innerHTML = "Fuck";59        let subtitle = document.getElementsByClassName("subtitle")[0].childNodes;60        let photoFleur = document.getElementsByClassName("header-title-identification-intraflex")[0];6162        subtitle[0].innerHTML = "Cégep du Crack";63        photoFleur.style.backgroundImage = 'url("https://news.pistacherigolo.com/wp-content/uploads/2022/03/weedleaf-omnivox.png")';64        inputs[5].style.display = "none";65        inputs[4].style.display = "none";6667        premierBouton[0].style.display = "none";68        deuxiemeBouton[0].style.display = "none";69        side[0].style.background = "rgba(255,255,255,.6)";7071    }catch(error){}727374})();
New paste