YouTube - Always Theater Mode

Set the default viewing mode to Theater Mode.

当前为 2015-06-19 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name YouTube - Always Theater Mode
  3. // @namespace r-a-y/youtube/theater
  4. // @description Set the default viewing mode to Theater Mode.
  5. // @include http://www.youtube.com/watch*
  6. // @include https://www.youtube.com/watch*
  7. // @version 1
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. document.getElementById('page').className = "watch watch-stage-mode";
  12. document.getElementById('player').className = "content-alignment watch-medium";
  13. document.getElementById('watch7-container').className = "watch-wide";
  14. document.getElementById('watch-appbar-playlist').setAttribute('style', 'top:520px');