Remove In-App Rating Prompt

Hopefully this removes the prompt asking you to rate the app.
This commit is contained in:
arichornlover 2024-02-13 17:58:48 -06:00 committed by GitHub
parent fe23399a42
commit 7ad0a72281
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -221,6 +221,18 @@ static NSString *accessGroupID() {
}
%end
// Remove App Rating Prompt in YouTube - @arichornlover
%hook UIApplication
- (BOOL)canOpenURL:(NSURL *)url {
NSString *urlString = url.absoluteString;
if ([urlString containsString:@"itunes.apple.com/app/id"]) {
return NO;
}
return %orig;
}
%end
// YTMiniPlayerEnabler: https://github.com/level3tjg/YTMiniplayerEnabler/
%hook YTWatchMiniBarViewController
- (void)updateMiniBarPlayerStateFromRenderer {