StyleShift

W Description

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         StyleShift
// @namespace    http://roblox.com/*
// @version      0.1
// @description  W Description
// @author       You
// @license MIT
// @match        https://www.roblox.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=roblox.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

var sheet = document.createElement("style")
document.body.appendChild(sheet)
sheet.innerHTML = `
thumbnail-2d,.avatar-card-image{
  background: linear-gradient(white, white) padding-box,
              linear-gradient(to top, black, white) border-box !important;
  border-radius: 10px !important;
  border: 3px solid transparent !important;
}
.icon-online {
  background: linear-gradient(#d4d4d4, gray) padding-box,
              linear-gradient(to top, rgba(100,100,255,1), rgba(100,100,255,0.5)) border-box !important;
  border-radius: 100% !important;
  border: 4px solid transparent !important;
}
.icon-game {
  background: linear-gradient(#d4d4d4, gray) padding-box,
              linear-gradient(to top, rgba(100,255,100,1), rgba(100,255,100,0.5)) border-box !important;
  border-radius: 100% !important;
  border: 4px solid transparent !important;
}
.thumbnail-2d-container{
border-radius:0px;
}
`
})();