Add rgb-text Class to XenForo HTML

Adds the rgb-text class to the XenForo HTML element

  1. // ==UserScript==
  2. // @name Add rgb-text Class to XenForo HTML
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.2
  5. // @description Adds the rgb-text class to the XenForo HTML element
  6. // @author YourName
  7. // @match *://*/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Add the rgb-text class to the XenForo HTML element
  15. const xenForoElement = document.getElementById('XenForo');
  16. if (xenForoElement && !xenForoElement.classList.contains('rgb-text')) {
  17. xenForoElement.classList.add('rgb-text');
  18. }
  19. })();