Earlier quoted context omitted.
There are some edge cases where the app stores don't allow desirable applications to be distributed. One example would be e.g. NewPipe (an open source third party ad-free YouTube client) on Android. Another would be alternative browsers or programming language interpreters on iOS (the rules on the latter changed repeatedly). Termux is also being distributed outside of the Play store due to some restriction and IIRC n…
Newpipe is amazing, if iOS users had access to it then YouTube might actually be forced to improve their mobile app. Out-of-the-box, you get video downloading, PiP, background playback, and so much more. No need to pay Google a dime for the best YouTube features on the market.
let v = document.querySelector('video');
v.addEventListener('webkitpresentationmodechanged', (e)=>e.stopPropagation(), true);
setTimeout(()=>v.webkitSetPresentationMode('picture-in-picture'), 3000);
completion()