Greasy Fork is available in English.

Maximize Video

Maximize all video players.Support Piture-in-picture.

< Feedback on Maximize Video

Question/comment

§
Posted: 18-07-2017

请问怎么让视频在打开页面后自动进入全屏

请问怎么让视频在打开页面后自动进入全屏,每次还要去点网页全屏按钮,好麻烦,谢谢

冻猫Author
§
Posted: 18-07-2017

不能自动。
因为是兼容任意网页的,每个网站播放器都有区别。还有的网站一个页面有多个视频,比如论坛帖子,比如微博。也不好判断要全屏哪个。

§
Posted: 19-07-2017

自己搞定了~

冻猫Author
§
Posted: 20-07-2017
自己搞定了~

嗯,反正你按自己经常上的视频网站改就好了。通用的不好加这功能。

§
Posted: 20-07-2017
Edited: 21-07-2017

其实可以出一个自动全屏版,
把getPlayer()里的target换成自动获取到的video,object等,
再在底部加上
setTimeout(function () {
var event = document.createEvent("MouseEvents");
event.initMouseEvent("mouseover");
document.dispatchEvent(event);
maximize.playerControl();
}, 3000);
用来自动触发下即可,
我测试了除了一个页面上多个视频的不能自动全屏,在iframe,video,flash播放器里都基本都正常,

Post reply

Sign in to post a reply.