RedditHomeChromeStyle.swift 327 B

1234567891011
  1. import Foundation
  2. enum RedditHomeChromeStyle {
  3. /// Reserved for optional Reddit chrome tweaks. Login and user-menu controls are left visible.
  4. static let injectionScript = """
  5. (function() {
  6. const STYLE_ID = 'reddora-home-chrome-style';
  7. if (document.getElementById(STYLE_ID)) return;
  8. })();
  9. """
  10. }