Mute per WKWebView like Safari.
Interface:
@interface WKWebView (HMMuteExtension)
@property (getter=isMuted) BOOL muted;
@end
MuteableWKWebView append mute property into WKWebView.
Usage:
WKWebView *webView;
// mute
webView.muted = YES;
// unmute
webView.muted = NO;
powered by https://github.com/hetima/HTSymbolHook.