Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Libit Devchat+
- // @namespace http://tampermonkey.net/
- // @version 2024-01-27
- // @description try to take over the world!
- // @author DaxCodes
- // @match https://devchat.libit.xyz/*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=libit.xyz
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- var newstyle = document.createElement("style")
- newstyle.textContent = `
- @keyframes rainbow{
- 0%{color: red;}
- 20%{color: orange;}
- 40%{color: yellow;}
- 60%{color: lime;}
- 80%{color: blue;}
- 90%{color: purple;}
- 100%{color: red;}
- }
- p{
- animation-name: rainbow;
- animation-duration: 3.5s;
- animation-iteration-count: infinite;
- }
- `
- document.head.appendChild(newstyle);
- document.getElementById("message").style.backgroundColor = "#080808";
- document.body.style.backgroundColor = "#161616";
- var inputs = document.getElementsByTagName("input");
- var images = document.getElementsByTagName("img");
- var divs = document.getElementsByTagName("div");
- for(var divsss = 0; divsss < divs.length; divsss++){
- //do something to each image like
- divs[divsss].style.backgroundColor = "#070707";
- }
- setTimeout(function(){
- for(var iss = 0; iss < inputs.length; iss++){
- //do something to each input like
- if (inputs[iss].placeholder != "Message"){
- inputs[iss].remove()
- }
- }
- for(var isss = 0; isss < images.length; isss++){
- //do something to each image like
- if (images[isss].src.includes("grabify.link")){
- images[isss].remove()
- }
- }
- }, 450)
- })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement