// ==UserScript==
// @name 视频网HTML5播放小工具
// @description 三大功能 。启用HTML5播放;万能网页全屏;添加快捷键:快进、快退、暂停/播放、音量、下一集、切换(网页)全屏、上下帧、播放速度。支持视频站点:油管、TED、优.土、QQ、B站、西瓜视频、爱奇艺、A站、PPTV、芒果TV、新浪、微博、网易[娱乐、云课堂、新闻]、搜狐、风行、百度云视频等;直播:斗鱼、YY、虎牙、龙珠、战旗。可增加自定义站点
// @homepage https://bbs.kafan.cn/thread-2093014-1-1.html
// @include https://*.qq.com/*
// @exclude https://user.qzone.qq.com/*
// @include https://www.weiyun.com/video_*
// @include https://v.youku.com/v_show/id_*
// @include https://vku.youku.com/live/*
// @include https://video.tudou.com/v/*
// @include https://www.iqiyi.com/*
// @include https://www.bilibili.com/*
// @include https://www.ixigua.com/*
// @include https://www.acfun.cn/*
// @include *://v.pptv.com/show/*
// @include *://www.miguvideo.com/*
// @include https://tv.sohu.com/*
// @include https://film.sohu.com/album/*
// @include https://www.mgtv.com/*
// @include *://www.fun.tv/vplay/*
// @include *://m.fun.tv/*
// @version 1.6.6
// @include *://*.163.com/*
// @include *://*.icourse163.org/*
// @include https://*.sina.com.cn/*
// @include https://video.sina.cn/*
// @include https://k.sina.cn/*
// @include https://weibo.com/*
// @include https://*.weibo.com/*
// @include https://pan.baidu.com/*
// @include https://yun.baidu.com/*
// @include *://v.yinyuetai.com/video/*
// @include *://v.yinyuetai.com/playlist/h5/*
// @include *://v.ifeng.com/*
// @include *://*.mtime.com/*
// @GM_info
// @include https://www.youtube.com/watch?v=*
// @include https://www.ted.com/talks/*
// @noframes
// @include *://www.yy.com/*
// @include *://v.huya.com/play/*
// @include https://www.huya.com/*
// @include https://v.douyu.com/*
// @include https://www.douyu.com/*
// @include *://star.longzhu.com/*
// @include https://www.zhanqi.tv/*
// @run-at document-start
// @include https://www.yunbtv.com/vodplay/*
// @include *://www.dililitv.com/*
// @include *://www.dynamicpuer.com/tv-play-*
// @include https://www.i6v.cc/*/play/*
// @grant unsafeWindow
// @grant GM_addStyle
// @grant GM_registerMenuCommand
// @grant GM_setValue
// @grant GM_getValue
// @namespace https://gf.qytechs.cn/users/7036
// ==/UserScript==
'use strict';
const w = unsafeWindow || window;
const d = document, find = [].find;
let v, _fp, _fs, by; // document.body
const observeOpt = {childList : true, subtree : true};
const noopFn = () => {};
const q = (css, p = d) => p.querySelector(css);
const delElem = e => e.remove();
const $$ = (c, cb = delElem, doc = d) => {
if (!c || !c.length) return;
if (typeof c === 'string') c = doc.querySelectorAll(c);
if (!cb) return c;
for (let e of c) if (e && cb(e)===false) break;
};
const gmFuncOfCheckMenu = (title, saveName, defaultVal = true) => {
const r = GM_getValue(saveName, defaultVal);
if (r) title += ' √';
GM_registerMenuCommand(title, () => {
GM_setValue(saveName, !r);
location.reload();
});
return r;
};
const r1 = (regp, s) => regp.test(s) && RegExp.$1;
const log = console.log.bind(console, '%c脚本[%s] 反馈:%s\n%s', 'color:#c3c;font-size:1.5em',
GM_info.script.name, GM_info.script.homepage);
const sleep = ms => new Promise(resolve => { setTimeout(resolve, ms) });
const getStyle = (o, s) => {
if (o.style[s]) return o.style[s];
if (getComputedStyle) {
const x = getComputedStyle(o, '');
s = s.replace(/([A-Z])/g,'-$1').toLowerCase();
return x && x.getPropertyValue(s);
}
};
const doClick = e => {
if (typeof e === 'string') e = q(e);
if (e) { e.click ? e.click() : e.dispatchEvent(new MouseEvent('click')) };
};
const clickDualButton = btn => { // 2合1 按钮
!btn.nextSibling || getStyle(btn, 'display') !== 'none' ? doClick(btn) : doClick(btn.nextSibling);
};
const intervalQuery = (cb, condition, stop = true) => {
const fn = typeof condition === 'string' ? q.bind(null, condition) : condition;
const t = setInterval(() => {
const r = fn();
if (r) {
stop && clearInterval(t);
cb(r);
}
}, 300);
};
const firefoxVer = r1(/Firefox\/(\d+)/, navigator.userAgent);
const fakeUA = ua => Object.defineProperty(navigator, 'userAgent', {
value: ua,
writable: false,
configurable: false,
enumerable: true
});
const getMainDomain = host => {
const a = host.split('.');
let i = a.length - 2;
if (/com|tv|net|org|gov|edu/.test(a[i])) i--;
return a[i];
};
const ua_chrome = 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3626.121 Safari/537.36';
const ua_ipad2 = 'Mozilla/5.0 (iPad; CPU OS 5_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3';
class FullScreen {
constructor(e) {
let fn = d.exitFullscreen || d.webkitExitFullscreen || d.mozCancelFullScreen || d.msExitFullscreen || noopFn;
this.exit = fn.bind(d);
fn = e.requestFullscreen || e.webkitRequestFullScreen || e.mozRequestFullScreen || e.msRequestFullScreen || noopFn;
this.enter = fn.bind(e);
}
static isFull() {
return !!(d.fullscreen || d.webkitIsFullScreen || d.mozFullScreen ||
d.fullscreenElement || d.webkitFullscreenElement || d.mozFullScreenElement);
}
toggle() {
FullScreen.isFull() ? this.exit() : this.enter();
}
}
//万能网页全屏, 参考了:https://github.com/gooyie/ykh5p
class FullPage {
constructor(video, onSwitch) {
this._video = video;
this._isFull = !1;
this._onSwitch = onSwitch;
this._checkContainer();
GM_addStyle(
`.gm-fp-body .gm-fp-zTop {
position: relative !important;
z-index: 2147483647 !important;
}
.gm-fp-wrapper, .gm-fp-body{ overflow:hidden !important; }
.gm-fp-wrapper .gm-fp-innerBox {
width: 100% !important;
height: 100% !important;
}
.gm-fp-wrapper {
display: block !important;
position: fixed !important;
width: 100% !important;
height: 100% !important;
top: 0 !important;
left: 0 !important;
background: #000 !important;
z-index: 2147483647 !important;
}`
);
}
getPlayerContainer(video) {
let e = video, p = e.parentNode;
const { clientWidth: wid, clientHeight: h } = e;
do {
e.classList.add('gm-fp-innerBox');
e = p;
p = e.parentNode;
} while (e.nodeName == 'DIV' && p.clientWidth-wid < 5 && p.clientHeight-h < 5);
//e 为返回值,在此之后不能变了
while (p !== by) {
p.classList.add('gm-fp-zTop');
p = p.parentNode;
}
return e;
}
_checkContainer() {
this._container = this._container || this.getPlayerContainer(this._video);
}
get container() {
this._checkContainer();
return this._container;
}
static isFull(e) {
return w.innerWidth - e.clientWidth < 5 && w.innerHeight - e.clientHeight < 5;
}
toggle() {
const cb = this._onSwitch;
if (!this._isFull && cb) cb(true);
by.classList.toggle('gm-fp-body');
this.container.classList.toggle('gm-fp-wrapper');
this._isFull = !this._isFull;
if (!this._isFull && cb) setTimeout(cb, 199, !1);
}
}
const { host, pathname: path } = location;
const u = getMainDomain(host);
const events = {
on(name, fn) {
this[name] = fn;
}
};
const app = {
isLive: !1,
disableSpace: !1,
multipleV: !1, //多视频页面
checkMV() {
if (!v || !v.offsetWidth) v = this.findMV();
return v;
},
checkDPlayer() {
if (this.dpShell) return true;
if (this.dpShell = v.closest('.dplayer')) {
this.btnFP = q('.dplayer-full-in-icon > span', this.dpShell);
this.btnFS = q('.dplayer-full-icon', this.dpShell);
this.btnPlay = this.btnNext = _fs = _fp = null;
this.disableSpace = !1;
this.dpShell.closest('body > *').classList.add('gm-dp-zTop');
v.addEventListener('dblclick', ev => {
this.btnFP.click();
}, true);
}
return !!this.dpShell;
},
hotKey(e) {
if (e.ctrlKey || e.altKey || e.target.contentEditable=='true' ||
/INPUT|TEXTAREA|SELECT/.test(e.target.nodeName)) return;
if (e.shiftKey && ![32,13,37,39].includes(e.keyCode)) return;
if (this.isLive && [37,39,78,88,67,90].includes(e.keyCode)) return;
if (this.extPlayer && this.extPlayer.contains(e.target) && [32,37,39].includes(e.keyCode)) return;
if (!this.checkMV()) return;
!this.checkDPlayer() && this.checkUI();
if (events.keydown && events.keydown(e)) return;
let n;
switch (e.keyCode) {
case 32: //space
if (e.shiftKey) {
v.scrollIntoView();
v.focus();
} else {
if (this.disableSpace && by != e.target) return;
if (this.btnPlay) clickDualButton(this.btnPlay);
else v.paused ? v.play() : v.pause();
}
e.preventDefault();
break;
case 37: n = e.shiftKey ? -20 : -5; //left 快退5秒,shift加速
case 39: //right
n = n || (e.shiftKey ? 20 : 5); //快进5秒,shift加速
v.currentTime += n;
break;
case 78: // N 下一首
this.btnNext && this.btnNext.offsetWidth > 1 && doClick(this.btnNext);
break;
case 38: n = 0.1; //加音量
case 40: //降音量
n = n || -0.1;
n += v.volume;
n = + n.toFixed(1);
if (0 <= n && n <= 1) v.volume = n;
e.preventDefault();
break;
case 13: //回车键。 全屏
if (e.shiftKey) {
_fp ? _fp.toggle() : clickDualButton(this.btnFP);
} else {
_fs ? _fs.toggle() : clickDualButton(this.btnFS);
}
break;
case 27: //esc
if (this.dpShell) return;
if (FullScreen.isFull()) {
_fs ? _fs.exit() : clickDualButton(this.btnFS);
} else if (FullPage.isFull(v)) {
_fp ? _fp.toggle() : clickDualButton(this.btnFP);
}
break;
case 67: n = 0.1; //按键C:加速播放 +0.1
case 88: //按键X:减速播放 -0.1
n = n || -0.1;
n += v.playbackRate;
n = + n.toFixed(2);
if (0 < n && n <= 16) v.playbackRate = n;
break;
case 90: //按键Z:正常速度播放
v.playbackRate = 1;
break;
case 70: n = 0.03; //按键F:下一帧
case 68: //按键D:上一帧
n = n || -0.03;
if (!v.paused) v.pause();
v.currentTime += n;
break;
default: return;
}
e.stopPropagation();
},
checkUI() {
if (this.webfullCSS && !this.btnFP) this.btnFP = q(this.webfullCSS);
if (this.btnFP) _fp = null;
else if (!_fp) _fp = new FullPage(v, this.switchFP);
if (this.fullCSS && !this.btnFS) this.btnFS = q(this.fullCSS);
if (this.btnFS) _fs = null;
else if (!_fs) _fs = new FullScreen(v);
if (this.nextCSS && !this.btnNext) this.btnNext = q(this.nextCSS);
if (this.playCSS && !this.btnPlay) this.btnPlay = q(this.playCSS);
},
switchFP(toFull) {
if (toFull) {
for (let e of this.vSet) this.viewObserver.unobserve(e);
} else {
for (let e of this.vList) this.viewObserver.observe(e);
}
},
onGrowVList() {
if (this.vList.length == this.vCount) return;
if (this.viewObserver) {
for (let e of this.vList) {
if (!this.vSet.has(e)) this.viewObserver.observe(e);
}
} else {
const config = {
rootMargin: '0px',
threshold: 0.9
};
this.viewObserver = new IntersectionObserver(this.onIntersection.bind(this), config);
for (let e of this.vList) this.viewObserver.observe(e);
}
this.vSet = new Set(this.vList);
this.vCount = this.vList.length;
},
onIntersection(entries) {
if (this.vList.length < 2) return;
const entry = find.call(entries, k => k.isIntersecting);
if (!entry || v == entry.target) return;
v = entry.target;
_fs = new FullScreen(v);
_fp = new FullPage(v, this.switchFP);
events.switchMV && events.switchMV();
},
bindEvent() {
by = d.body;
log('bind event\n', v);
events.foundMV && events.foundMV();
if (!this.isLive) {
const onCanplay = ev => {
v.playbackRate = localStorage.mvPlayRate;
v.addEventListener('ratechange', ev => {
localStorage.mvPlayRate = v.playbackRate;
});
v.removeEventListener('canplay', onCanplay);
};
v.addEventListener('canplay', onCanplay);
}
const fn = ev => {
events.canplay && events.canplay();
v.removeEventListener('canplaythrough', fn);
};
if (v.readyState > 3) fn();
else v.addEventListener('canplaythrough', fn);
by.addEventListener('keydown', this.hotKey);
if (this.extPlayerCSS) {
const x = this.extPlayer = v.closest(this.extPlayerCSS);
x && x.addEventListener('keydown', this.hotKey);
}
if (this.multipleV) {
new MutationObserver(this.onGrowVList.bind(this)).observe(by, observeOpt);
this.vCount = 0;
this.onGrowVList();
}
this.checkDPlayer();
},
init() {
this.hotKey = this.hotKey.bind(this);
this.switchFP = this.multipleV ? this.switchFP.bind(this) : null;
this.vList = d.getElementsByTagName('video');
const fn = e => this.cssMV ? e.matches(this.cssMV) : e.offsetWidth > 9;
this.findMV = find.bind(this.vList, fn);
intervalQuery(e => {
v = e;
$$(this.adsCSS);
this.bindEvent();
}, this.findMV);
}
};
let router = {
ted() {
app.fullCSS = 'button[title="Enter Fullscreen"]';
app.playCSS = 'button[title="play video"]';
if (!gmFuncOfCheckMenu('TED强制高清', 'ted_forceHD')) return;
const getHDSource = async () => {
const pn = r1(/^(\/talks\/\w+)/, path);
const resp = await fetch(`https://www.ted.com${pn}/metadata.json`);
const data = await resp.json();
return data.talks[0].downloads.nativeDownloads.high;
};
const check = async (rs) => {
if (!v.src || v.src.startsWith('http')) return;
$$(app.vList, e => { e.removeAttribute('src') }); // 取消多余的媒体资源请求
try {
v.src = await getHDSource();
} catch(ex) {
console.error(ex);
}
};
events.on('foundMV', () => {
new MutationObserver(check).observe(v, {
attributes: true,
attributeFilter: ['src']
});
check();
});
},
qq() {
app.nextCSS = '.txp_btn_next';
app.webfullCSS = '.txp_btn_fake';
app.fullCSS = '.txp_btn_fullscreen';
app.extPlayerCSS = '#mod_player';
},
youku() {
if (host.startsWith('vku.')) {
events.on('canplay', () => {
app.isLive = !q('.spv_progress');
});
app.fullCSS = '.live_icon_full';
} else {
const switchQuality = gmFuncOfCheckMenu('自动切换最高清晰度', 'yk_switchQuality', !1);
const fn = () => {
w.$('.settings-item.quality-item').remove('[data-val=download]')
.removeClass('disable youku_vip_pay_btn login-canuse')
.children('span').remove();
};
events.on('canplay', fn);
events.on('foundMV',() => {
switchQuality && w.$(v).one('play', ev => {w.$('.quality-item:first').click()});
by.addEventListener('keyup', e => e.stopPropagation());
});
GM_registerMenuCommand('解除清晰度选择限制', fn);
app.webfullCSS = '.control-webfullscreen-icon';
app.fullCSS = '.control-fullscreen-icon';
app.nextCSS = 'span.icon-next';
}
},
bilibili() {
app.nextCSS = '.bilibili-player-video-btn-next';
app.webfullCSS = '.bilibili-player-video-web-fullscreen';
app.fullCSS = '.bilibili-player-video-btn-fullscreen';
app.extPlayerCSS = '#playerWrap';
const danmu = gmFuncOfCheckMenu('弹幕', 'bili_danmu');
const danmuCSS = '.bilibili-player-video-danmaku-switch .bui-checkbox';
const setPlayer = x => {
if (x == v) return; v = x;
intervalQuery(e => {if (e.checked != danmu) e.click()}, danmuCSS);
doClick('i.bilibili-player-iconfont-repeat.icon-24repeaton');//关循环播放
app.btnNext = app.btnFP = app.btnFS = null;
};
events.on('foundMV', () => {
if (!danmu) intervalQuery(doClick, danmuCSS);
intervalQuery(setPlayer, app.findMV, !1);
});
},
ixigua() {
app.fullCSS = '.xgplayer-fullscreen';
app.webfullCSS = '.xgplayer-cssfullscreen';
app.nextCSS = '.xgplayer-playNext';
events.on('foundMV', () => {
v.addEventListener('keydown', app.hotKey);
});
},
miguvideo() {
app.playCSS = '.play-btn';
app.fullCSS = '.zoom-btn';
app.webfullCSS = '.page-zoom-btn';
app.nextCSS = '.next-btn';
},
sina() {
fakeUA(ua_ipad2);
},
weibo() {
app.multipleV = path.startsWith('/u/');
},
baidu() {
events.on('keydown', e => {
if (!videojs) return;
let n, p = videojs.getPlayers("video-player").html5player;
switch (e.keyCode) {
case 67: n = 0.1;
case 88:
n = n || -0.1;
n += + p.tech_.playbackRate().toFixed(1);
if (0 < n && n <= 16) p.tech_.setPlaybackRate(n);
return true;
case 90:
p.tech_.setPlaybackRate(1);
return true;
}
});
app.extPlayerCSS = '.video-content';
},
acfun() {
app.webfullCSS = '.fullscreen-web';
app.fullCSS = '.fullscreen-screen';
},
['163']() {
app.multipleV = host.startsWith('news.');
GM_addStyle('div.video,video{max-height: 100% !important;}');
return host.split('.').length > 3;
},
sohu() {
app.nextCSS = 'li.on[data-vid]+li a';
app.fullCSS = '.x-fullscreen-btn';
app.webfullCSS = '.x-pagefs-btn';
},
mtime() {
fakeUA(ua_ipad2);
events.on('foundMV', () => {
v.preload = 'auto';
v.autoplay = true;
});
},
fun() {
if (host.startsWith('m.')) {
if (!path.includes('play')) return true;//非播放页,不执行init()
/^\/[mv]/.test(path) && location.assign(path.replace('/', '/i') + location.search);
app.nextCSS = 'a.btn.next-btn';
app.fullCSS = 'a.btn.full-btn';
GM_addStyle('div.p-ip-wrap{overflow-y: auto !important;}');
return;
}
let vid = r1(/\bv-(\d+)/, path);
let mid = r1(/\bg-(\d+)/, path);
//剧集path: /implay/,单视频path: /ivplay/
if (vid) {
mid && location.assign(`//m.fun.tv/implay/?mid=${mid}&vid=${vid}`);
location.assign('//m.fun.tv/ivplay/?vid='+vid);
}
mid && setTimeout(() => {
vid = w.vplay.videoid;
vid && location.assign(`//m.fun.tv/implay/?mid=${mid}&vid=${vid}`);
}, 99);
r1(/\bt-(\d+)/, path) && setTimeout(() => {
vid = w.vplay.videoid;
location.assign('//m.fun.tv/ivplay/?vid='+vid);
}, 99);
return true;
}
};
app.disableSpace = /youtube|ixigua|qq|pptv/.test(u);
if (!router[u]) { //直播站点
router = {
douyu() {
const inRoom = host.startsWith('www.');
events.on('foundMV', () => {
if (!inRoom) w.$(d).unbind('keydown');
else if (path != '/') {
intervalQuery(doClick, '.roomSmallPlayerFloatLayout-closeBtn');
q('#js-player-aside-state').checked = true;
}
});
app.cssMV = '[src^=blob]';
app.playCSS = inRoom ? 'div[class|=play]' : 'input[class|=play]';
app.webfullCSS = inRoom ? 'div[class|=wfs]' : 'input[title="进入网页全屏"]';
app.fullCSS = inRoom ? 'div[class|=fs]' : 'input[title="进入全屏"]';
app.adsCSS = 'a[href*="wan.douyu.com"]';
},
yy() {
app.isLive = !path.startsWith('/x/');
if (app.isLive) {
app.fullCSS = '.yc__fullscreen-btn';
app.webfullCSS = '.yc__cinema-mode-btn';
app.playCSS = '.yc__play-btn';
}
},
huya() {
if (firefoxVer && firefoxVer < 57) return true;
app.webfullCSS = '.player-fullpage-btn';
app.fullCSS = '.player-fullscreen-btn';
app.playCSS = '#player-btn';
app.adsCSS = '#player-subscribe-wap,#wrap-income,#hy-ad,#hy-ab';
intervalQuery(doClick, '.login-tips-close');
},
longzhu() {
app.fullCSS = 'a.ya-screen-btn';
},
zhanqi() {
localStorage.lastPlayer = 'h5';
app.fullCSS = '.video-fullscreen';
}
};
if (router[u]) {
app.isLive = app.isLive || !host.startsWith('v.');
!w.chrome && fakeUA(ua_chrome);
}
}
GM_registerMenuCommand('脚本功能快捷键表' , alert.bind(w,
`左右方向键:快退、快进5秒; +shift: 20秒
上下方向键:音量调节
空格键:暂停/播放; +shift: 定位播放器窗口
N:播放下一集
回车键:切换全屏; +shift: 切换网页全屏
ESC:退出(网页)全屏
C:加速0.1倍播放 X:减速0.1倍播放 Z:正常速度播放
D:上一帧 F:下一帧`
));
if (!router[u] || !router[u]()) app.init();