Compatibility
Compatible with iOS 11.0 +
Description
YouTube usually implements a feature as an experiment. You may get to see it while others don't, and vice-versa. This tweak enables or disables those features in a way useful to you. This replaces the following tweaks:
Changelog
1.0.6: Disabled the new floating mini-player style
1.0.5: Removed YTNoCheckLocalNetwork feature
1.0.4: Enabled video zoom in/out feature
Source Code
#import <Foundation/Foundation.h> %hook YTColdConfig - (BOOL)enableIosFloatingMiniplayer { return NO; } - (BOOL)enableYouthereCommandsOnIos { return NO; } - (BOOL)ignoreVideoZoomAspectRatioParams { return YES; } - (BOOL)isVideoZoomEnabled { return YES; } - (BOOL)respectDeviceCaptionSetting { return NO; } - (BOOL)shouldUseAppThemeSetting { return YES; } %end %hook YTIMediaQualitySettingsHotConfig %new(B@:) - (BOOL)omitAdvancedMenuOptionForAirPlay { return NO; } %end %hook YTYouThereController - (BOOL)shouldShowYouTherePrompt { return NO; } %end