// ==UserScript== // @name HTML5自动播放视频(Video Autoplay) // @namespace dking.com // @version 0.1 // @description 模拟Youtube效果,访问页面时自动播放视频。 // @author DKing // @match http://*/* // @match https://*/* // @include http://*/* // @include https://*/* // @grant none // @downloadURL none // ==/UserScript== var wait4load = setInterval(function(){ if(document.visibilityState == 'visible' && $('video').length > 0){ clearInterval(wait4load); for(var idx =0;i++;i< $('video').length){ $('video').get(idx).play(); } } },200);