Rainbow EVERYTHING*!

All (properly formatted non-extension) websites will become RAINBOW!

作者
Jos KVW
今日安裝
0
安裝總數
10
評價
0 0 0
版本
1.0
建立日期
2022-01-03
更新日期
2022-01-03
尺寸
575 位元組
授權條款
GNU GPLv3
腳本執行於

it just works!™
If you want to add this to your site, just paste the HTML found below. Adjust the speed variable if the effect is to fast or slow.

<script>
    var dg = 0
    const speed = 10
    setInterval(() => {
        document.querySelector(':root').style.setProperty('filter', `hue-rotate(${dg}deg)`);
        dg += speed
    }, 100);
</script>