Greasy Fork is available in English.

colore barra facebook ramdom figuccio

cambia 10 colori random

22.07.2022 itibariyledir. En son verisyonu görün.

// ==UserScript==
// @name          colore barra facebook ramdom figuccio
// @namespace     https://greasyfork.org/users/237458
// @version       0.2
// @author        figuccio
// @description   cambia 10 colori random
// @match         https://*.facebook.com/*
// @match         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
// @license        MIT
// @noframes
// ==/UserScript==
(function() {
    'use strict';
$(document).ready(function () {
            var colors = ["#0099cc","#587b2e","#990000","#000000","#1C8200","#987baa","#981890","#AA8971","#1987FC","#99081E"];
                var bodybgarrayno = Math.floor(Math.random() * colors.length);
                var selectedcolor = colors[bodybgarrayno];
                $("body .thodolrn").css("background",selectedcolor);
            });


    })();