We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98b3e2b commit d24b47bCopy full SHA for d24b47b
1 file changed
VIP Video Cracker/VIP Video Cracker.user.js
@@ -2,7 +2,7 @@
2
// @name VIP视频破解
3
// @name:en VIP Video Cracker
4
// @namespace hoothin
5
-// @version 1.8.1
+// @version 1.8.2
6
// @description 解析并破解各大视频站的VIP权限
7
// @description:en Crack VIP permissions of some chinese video sites
8
// @author hoothin
@@ -186,6 +186,17 @@
186
}else if(location.protocol=="http:"){
187
canEmbed=true;
188
}
189
+ var htmlVideo=document.querySelector("video");
190
+ if(htmlVideo){
191
+ var vi=setInterval(function(){
192
+ if(htmlVideo.src){
193
+ setTimeout(function() {
194
+ htmlVideo.click();
195
+ },1000);
196
+ clearInterval(vi);
197
+ }
198
+ },500);
199
200
if(canEmbed){
201
iframe.width=videoWidth;
202
iframe.height=videoHeight;
0 commit comments