Advertisement
Guest User

NeDevine

a guest
Mar 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name     NeDevine
  3. // @version  2
  4. // @grant    none
  5. // @include  https://www.lcpdfr.com/*
  6. // ==/UserScript==
  7.  
  8. let fix = document.createElement("style");
  9. fix.innerHTML = `.ipsUserPhoto[href*="/133386-"] img {
  10.     height: 0;
  11.     padding-bottom: 100%;
  12.     background-image: url(https://img.lcpdfr.com/upload/shortbus/Bronze.png);
  13.     background-size: 100%;
  14. }
  15. .ipsComment_content[data-quotedata*='"userid":133386']::before {
  16.     content: 'WARNING: POST MAY CAUSE LOSS OF BRAIN FUNCTION! PROCEED AT OWN RISK!';
  17.     position: absolute;
  18.     right: 0;
  19.     left: 0;
  20.     text-align: center;
  21.     font-size: 1.8em;
  22.     font-weight: bold;
  23. }
  24. .ipsComment_content[data-quotedata*='"userid":133386'] .cPost_contentWrap {
  25.     filter: blur(5px);
  26. }
  27. .ipsComment_content[data-quotedata*='"userid":133386'] .cPost_contentWrap:hover {
  28.     filter: none;
  29. }`;
  30. document.body.appendChild(fix);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement