Woot Woot

Fits video to screen

  1. // ==UserScript==
  2. // @name Woot Woot
  3. // @version 0.2
  4. // @description Fits video to screen
  5. // @include http://*.wootly.ch/?*
  6. // @include http://wootly.ch/?*
  7. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
  8. // @grant GM_addStyle
  9. // @namespace https://greasyfork.org/users/59
  10. // ==/UserScript==
  11.  
  12. $("#mplayer_wrapper").css("position", "fixed").css("top", "0px").css("bottom", "0px").css("left", "0px").css("right", "0px").css("width", "100%").css("height", "100%");