Greasy Fork is available in English.

gofullscreen

fix missing button for full screen mode at html5 videos

目前為 2016-09-15 提交的版本,檢視 最新版本

// ==UserScript==
// @name        gofullscreen
// @description fix missing button for full screen mode at html5 videos
// @namespace   gnblizz
// @include     *
// @version     1.01
// @compatible  chrome
// @compatible  firefox
// @grant       none
// @icon        data:image/gif;base64,R0lGODlhMAAwAKECAAAAAICAgP///////yH5BAEKAAMALAAAAAAwADAAAALQnI+py+0Po5y02ouz3rz7D4biBJTmiabqyrbuC8fyHAf2jedpzuOvAAwKh6mhUfg7Hks3gHLpehptwIBTioxig0zrdStIgrslMFA8pCKp1oAZjXW6w/Mt/Nl2t8HeFl7o5QZgBagEYyawNxhUl7h4dlelFlZG+QVY6aglmIjjuKd50xla9RKI0mSCqaPJSMM0aEK4mhfbpSnTabM4WXrShtpHI6gqKvmKnCwns0tm2lOsLP3aUy08aK0zvc3d7b09Ei4+Tl5ufo6err7O3n5QAAA7
// ==/UserScript==
(function(af) {
  var i = af.length;
  if(i) do {
    af[--i].setAttribute('allowfullscreen', 'true');
  } while(i);
}(document.querySelectorAll('iframe:not([allowfullscreen])')))
//public domain by gnblizz
//contact me with my user name + '@web.de'