YouTube HTML5 AutoPause

Automatically pause YouTube HTML5 videos when they appear.

  1. // ==UserScript==
  2. // @name YouTube HTML5 AutoPause
  3. // @namespace https://github.com/sunaku
  4. // @version 0.1.1
  5. // @description Automatically pause YouTube HTML5 videos when they appear.
  6. // @match https://*.youtube.com/watch*
  7. // @match http://*.youtube.com/watch*
  8. // @copyright 2014 Suraj N. Kurapati
  9. // ==/UserScript==
  10.  
  11. var buttons = document.getElementsByClassName("ytp-play-button");
  12. for (var i in buttons) {
  13. buttons[i].click();
  14. }