Skip to content

Instantly share code, notes, and snippets.

@sarkrui
Last active November 21, 2020 13:25
Show Gist options
  • Save sarkrui/867f279262b3d575eb94c7869c48c7b9 to your computer and use it in GitHub Desktop.
Save sarkrui/867f279262b3d575eb94c7869c48c7b9 to your computer and use it in GitHub Desktop.
Netflix Custom Playback Rate
# Netflix 倍速 JavaScript 命令
# 已在 Safari/Chrome/Edge 浏览器下测试有效
# 使用方法:调用开发者工具 - 控制台
# Netflix Custom Playback Rate Javascript Command
# Usage: you shall enter the command at the developer tool - console
# The command has been tested vaild on Safari/Chrome/Edge browsers.
# 示例/Examle: document.querySelector ('video').playbackRate = 1.6, 1.6 could be any float value
document.querySelector ('video').playbackRate = 1.6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment