Greasy Fork is available in English.

colore barra facebook ramdom figuccio

cambia 10 colori random

2021-07-20 يوللانغان نەشرى. ئەڭ يېڭى نەشرىنى كۆرۈش.

// ==UserScript==
// @name          colore barra facebook ramdom figuccio
// @namespace     https://greasyfork.org/users/237458
// @version       0.1
// @author        figuccio
// @description   cambia 10 colori random
// @include       https://*.facebook.com/*
// @include       https://*.facebook.com/me/*
// @grant         GM_addStyle
// @grant         GM_setValue
// @grant         GM_getValue
// @grant         GM_registerMenuCommand
// @run-at        document-start
// @require       https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js
// @noframes
// ==/UserScript==
$(function() {
            var colors = ["#0099cc","#587b2e","#990000","#000000","#1C8200","#987baa","#981890","#AA8971","#1987FC","#99081E"];

            setInterval(function() {
                var bodybgarrayno = Math.floor(Math.random() * colors.length);
                var selectedcolor = colors[bodybgarrayno];
                $("body .thodolrn").css("background",selectedcolor);
            }, 3000);
        })