Sleazy Fork is available in English.

soundgasm change background

darkmode color change for soundgasm

질문, 리뷰하거나, 이 스크립트를 신고하세요.
  1. // ==UserScript==
  2. // @name soundgasm change background
  3. // @namespace AnimeRaupe
  4. // @version 1.6
  5. // @description darkmode color change for soundgasm
  6. // @author AnimeRaupe
  7. // @match ://*.soundgasm.net/*
  8. // @grant none
  9. // @run-at document-start
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function(){
  14. 'use strict';
  15.  
  16. const styles1 = document.createElement('style');
  17. styles1.type = 'text/css';
  18. styles1.innerHTML = `
  19. body{
  20. background-color: #000000 !important;
  21. color: #a655d9 !important;
  22. }
  23. `;
  24.  
  25. const styles2 = document.createElement('style');
  26. styles2.type = 'text/css';
  27. styles2.innerHTML = `
  28. .jp-audio, .jp-audio-stream, .jp-video{
  29. background-color: #000000 !important;
  30. color: #a655d9 !important;
  31. }
  32. `;
  33.  
  34. const styles3 = document.createElement('style');
  35. styles3.type = 'text/css';
  36. styles3.innerHTML = `
  37. .sound-details{
  38. background-color: #000000 !important;
  39. }
  40. `;
  41.  
  42. const styles4 = document.createElement('style');
  43. styles4.type = 'text/css';
  44. styles4.innerHTML = `
  45. a:-webkit-any-link{
  46. color: #00dcff !important;
  47. }
  48. `;
  49.  
  50. document.body.appendChild(styles1);
  51. document.body.appendChild(styles2);
  52. document.body.appendChild(styles3);
  53. document.body.appendChild(styles4);
  54. })();