Advertisement
Guest User

CollabVM Vm0b0t Blur Fix

a guest
May 27th, 2023
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Vm 0b0t blur fix
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  fixes vm0b0t blur on collabvm
  6. // @author       mrasdaf
  7. // @match        https://computernewb.com/collab-vm/lang/*
  8. // @match        https://collabvm.org/*
  9. // @icon         https://www.google.com/s2/favicons?sz=64&domain=computernewb.com
  10. // @grant        none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14.     'use strict';
  15.     setTimeout(() => {document.querySelector("div.col-sm-5.col-md-3").firstChild.firstChild.style = "filter:blur(40px)!important"}, "2000");
  16. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement