🏠 Home 

Trip Mode vHF

A modern Convo.trip module. #101025 #110101001


Install this script?
  1. // ==UserScript==
  2. // @name Trip Mode vHF
  3. // @description A modern Convo.trip module. #101025 #110101001
  4. // @author Dalang
  5. // @include http://hackforums.net/*
  6. // @include https://hackforums.net/*
  7. // @include http://*.hackforums.net/*
  8. // @include https://*.hackforums.net/*
  9. // @version 1.0
  10. // @icon ==🃏
  11. // @namespace https://greasyfork.org/users/962736
  12. // ==/UserScript==
  13. (function() {
  14. 'use strict';
  15. var styles = `body
  16. {
  17. position:absolute;
  18. height:100vh!important;
  19. width:100%!important;
  20. left:0!important;
  21. right:0!important;
  22. top:0!important;
  23. bottom:0!important;
  24. position:absolute!important;
  25. background-image:-webkit-linear-gradient(91deg,#26F33C,#3AFE46);
  26. animation:animate 3s linear infinite;
  27. }
  28. @keyframes animate {
  29. from{-webkit-filter:hue-rotate(0deg)}to{-webkit-filter:hue-rotate(360deg);
  30. }
  31. @-webkit-keyframes\
  32. from{-webkit-filter:hue-rotate(0deg)}to{-webkit-filter:hue-rotate(360deg);
  33. }
  34. @-moz-keyframes\
  35. from{-webkit-filter:hue-rotate(0deg)}to{-webkit-filter:hue-rotate(360deg);
  36. }
  37. @-o-keyframes
  38. from{-webkit-filter:hue-rotate(0deg)}to{-webkit-filter:hue-rotate(360deg);
  39. }`
  40. var styleSheet = document.createElement("style")
  41. styleSheet.type = "text/css"
  42. styleSheet.innerText = styles
  43. document.head.appendChild(styleSheet)
  44. })();