Netflix: Click to Play/Pause

Play/Pause when clicking the video.

当前为 2017-03-24 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Netflix: Click to Play/Pause
  3. // @description Play/Pause when clicking the video.
  4. // @author Zren
  5. // @icon https://assets.nflxext.com/us/ffe/siteui/common/icons/nficon2015.ico
  6. // @namespace http://github.com/Zren
  7. // @version 1
  8. // @match https://www.netflix.com/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. window.addEventListener('click', function(e) {
  13. if (e.target.matches('.player-video-wrapper *')) {
  14. document.querySelector('#netflix-player .player-control-bar .player-play-pause').click()
  15. }
  16. })