Netflix: show native controls
Enables the browser's built-in controls on the Netflix player for an extra progress and volume bar.
Code to copy
// Netflix: expose native browser controls on the player video element.
function showNativeControls() {
document.querySelectorAll('video').forEach(function (v) {
try {
v.controls = true;
v.removeAttribute('disablepictureinpicture');
} catch (e) {}
});
}
showNativeControls();
setInterval(showNativeControls, 2000);
How to use this example
- Copy the code with the button above.
- Install JustZix (2 minutes) and open the extension on the target page.
- Add a new rule matching that page.
- Paste the code into the rule's JavaScript panel and save — it runs on every page visit.
Rate this example
No ratings yet — be the first.