您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
تخطي صفحة بيانات الفيديو في العديد من مواقع المشاهدة
// ==UserScript== // @name Skip2Watch - تخطي للمشاهدة // @namespace http://www.iN4sser.com/ // @version 0.1 // @description تخطي صفحة بيانات الفيديو في العديد من مواقع المشاهدة // @author iN4sser // @include *://*cimaclub.com/*/ // @include *://*series4watch.tv/*/ // @include *://*cima4up.tv/*/ // @include *://*shahid4u.tv/* // @include *://*cima45.com/*/ // @include *://*egfire.com/*.html // @include *://live.aflamhq.co/*/ // @include *://*egy4way.com/*/ // @grant none // ==/UserScript== if (/cimaclub\.com/.test (location.hostname) ) { var oldUrlPath = window.location.pathname; if ( ! /\?view=1$/.test (oldUrlPath) ) { if (window.location.href.toString().indexOf("?view=1") != -1) return false; var newURL = window.location.protocol + "//"+ window.location.host+ oldUrlPath + "?view=1" + window.location.search + window.location.hash; window.location.replace (newURL); } } else if (/series4watch\.tv/.test (location.hostname) ) { var oldUrlPath = window.location.pathname; if ( ! /\?view=1$/.test (oldUrlPath) ) { if (window.location.href.toString().indexOf("?view=1") != -1) return false; var newURL = window.location.protocol + "//"+ window.location.host+ oldUrlPath + "?view=1" + window.location.search + window.location.hash; window.location.replace (newURL); } } else if (/cima4up\.tv/.test (location.hostname) ) { var oldUrlPath = window.location.pathname; if ( ! /\?view=1$/.test (oldUrlPath) ) { if (window.location.href.toString().indexOf("?view=1") != -1) return false; var newURL = window.location.protocol + "//"+ window.location.host+ oldUrlPath + "?view=1" + window.location.search + window.location.hash; window.location.replace (newURL); } } else if (/shahid4u\.tv/.test (location.hostname) ) { var oldUrlPath = window.location.pathname; if ( ! /\?watch=1$/.test (oldUrlPath) ) { if (window.location.href.toString().indexOf("?watch=1") != -1) return false; var newURL = window.location.protocol + "//"+ window.location.host+ oldUrlPath + "?watch=1" + window.location.search + window.location.hash; window.location.replace (newURL); } } else if (/cima45\.com/.test (location.hostname) ) { var oldUrlPath = window.location.pathname; if ( ! /\?watch=1$/.test (oldUrlPath) ) { if (window.location.href.toString().indexOf("?watch=1") != -1) return false; var newURL = window.location.protocol + "//"+ window.location.host+ oldUrlPath + "?watch=1" + window.location.search + window.location.hash; window.location.replace (newURL); } } else if (/egfire\.com/.test (location.hostname) ) { var oldUrlPath = window.location.pathname; if ( ! /\?do=views$/.test (oldUrlPath) ) { if (window.location.href.toString().indexOf("?do=views") != -1) return false; var newURL = window.location.protocol + "//"+ window.location.host+ oldUrlPath + "?do=views" + window.location.search + window.location.hash; window.location.replace (newURL); } } else if (/live.aflamhq\.co/.test (location.hostname) ) { var oldUrlPath = window.location.pathname; if ( ! /\?watch=1$/.test (oldUrlPath) ) { if (window.location.href.toString().indexOf("?watch=1") != -1) return false; var newURL = window.location.protocol + "//"+ window.location.host+ oldUrlPath + "?watch=1" + window.location.search + window.location.hash; window.location.replace (newURL); } } else if (/egy4way\.com/.test (location.hostname) ) { var oldUrlPath = window.location.pathname; if ( ! /\?watch=1$/.test (oldUrlPath) ) { if (window.location.href.toString().indexOf("?watch=1") != -1) return false; var newURL = window.location.protocol + "//"+ window.location.host+ oldUrlPath + "?watch=1" + window.location.search + window.location.hash; window.location.replace (newURL); } }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址