- import Foundation
- enum RedditHomeChromeStyle {
- /// Reserved for optional Reddit chrome tweaks. Login and user-menu controls are left visible.
- static let injectionScript = """
- (function() {
- const STYLE_ID = 'reddora-home-chrome-style';
- if (document.getElementById(STYLE_ID)) return;
- })();
- """
- }
|