Trip Mode vHF

A modern Convo.trip module. #101025 #110101001

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Аўтар
Dalang
Усталяванняў за дзень
0
Усяго ўсталяванняў
6
Рэйтынг
0 0 0
Версія
1.0
Створаны
23.09.2022
Абноўлены
26.09.2022
Памер
1.3 КБ
Ліцэнзія
Н/Д
Ужываецца на

// ==UserScript==
// @name Trip Mode vHF
// @description A modern Convo.trip module. #101025 #110101001
// @author Dalang
// @include http://hackforums.net/*
// @include https://hackforums.net/*
// @include http://*.hackforums.net/*
// @include https://*.hackforums.net/*
// @version 1.0
// @icon ==🃏

// ==/UserScript==
(function() {
'use strict';
var styles = `body
{
position:absolute;
height:100vh!important;
width:100%!important;
left:0!important;
right:0!important;
top:0!important;
bottom:0!important;
position:absolute!important;
background-image:-webkit-linear-gradient(91deg,#26F33C,#3AFE46);
animation:animate 3s linear infinite;
}
@keyframes animate {
from{-webkit-filter:hue-rotate(0deg)}to{-webkit-filter:hue-rotate(360deg);
}
@-webkit-keyframes\
from{-webkit-filter:hue-rotate(0deg)}to{-webkit-filter:hue-rotate(360deg);
}
@-moz-keyframes\
from{-webkit-filter:hue-rotate(0deg)}to{-webkit-filter:hue-rotate(360deg);
}
@-o-keyframes
from{-webkit-filter:hue-rotate(0deg)}to{-webkit-filter:hue-rotate(360deg);
}`
var styleSheet = document.createElement("style")
styleSheet.type = "text/css"
styleSheet.innerText = styles
document.head.appendChild(styleSheet)
})();