StyleShift

W Description

  1. // ==UserScript==
  2. // @name StyleShift
  3. // @namespace http://roblox.com/*
  4. // @version 0.1
  5. // @description W Description
  6. // @author You
  7. // @license MIT
  8. // @match https://www.roblox.com/*
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=roblox.com
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. var sheet = document.createElement("style")
  17. document.body.appendChild(sheet)
  18. sheet.innerHTML = `
  19. thumbnail-2d,.avatar-card-image{
  20. background: linear-gradient(white, white) padding-box,
  21. linear-gradient(to top, black, white) border-box !important;
  22. border-radius: 10px !important;
  23. border: 3px solid transparent !important;
  24. }
  25. .icon-online {
  26. background: linear-gradient(#d4d4d4, gray) padding-box,
  27. linear-gradient(to top, rgba(100,100,255,1), rgba(100,100,255,0.5)) border-box !important;
  28. border-radius: 100% !important;
  29. border: 4px solid transparent !important;
  30. }
  31. .icon-game {
  32. background: linear-gradient(#d4d4d4, gray) padding-box,
  33. linear-gradient(to top, rgba(100,255,100,1), rgba(100,255,100,0.5)) border-box !important;
  34. border-radius: 100% !important;
  35. border: 4px solid transparent !important;
  36. }
  37. .thumbnail-2d-container{
  38. border-radius:0px;
  39. }
  40. `
  41. })();