Popup Video

Popup online video out of the website

当前为 2014-08-16 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name       Popup Video
// @homepageURL https://github.com/archion/videopop
// @namespace  https://github.com/archion/
// @version    0.1.3
// @description  Popup online video out of the website
// @match      http://*/*
// @match      https://*/*
// @copyright  2014+, archion
// ==/UserScript==
if (window.top != window.self)  //don't run on frames or iframes
{
    return;
}
var ck=document.createElement("div");
ck.setAttribute("style","position: fixed; bottom: 20px; right: 20px;z-index: 999999;background: #000; opacity: 0.6;font-size: 8pt;text-align: center;color:#fff;padding: 4px");
ck.innerHTML="<a href='#non' style='color:#fff;text-decoration:none;'>Popup</a>";
document.body.appendChild(ck);
ck.addEventListener('click', function() {
	//var flash=document.querySelectorAll("object[type='application/x-shockwave-flash']");
	//var flash=document.querySelectorAll("object[type='application/x-shockwave-flash']");
	//var pa=document.createElement("param");
	//pa.setAttribute("name","wmode");
	//pa.setAttribute("value","opaque");
	//for (var i=0, len=flash.length; i<len ;i++){
	//flash[i].setAttribute("wmode","opaque");
	//flash[i].innerHTML='<param name="wmode" value="opaque"/>';
	//flash[i].appendChild(pa)
	//}
	//debugger;
	var ntf=document.createElement("div");
	ntf.id="topntf";
	ntf.setAttribute("style","position: absolute; top: 0px; left: 0px;z-index: 2147483647; background: #000; opacity: 0.8;font-size: 50pt;line-height: 50pt;text-align: center;color:#fff; "+"width: "+document.body.offsetWidth+"px; "+"height: "+document.body.offsetHeight+"px; "+"padding-top: "+document.body.scrollTop+"px;");
	ntf.innerHTML="please click the element to pop out<br> 请点击需要弹出的元素";
	document.body.appendChild(ntf);
	document.addEventListener('mousedown', function(e) {
		if (document.getElementById("topntf")){
			document.body.removeChild(document.getElementById("topntf"));
			//document.body.removeChild(ntf);
			//e = e || window.event;
			//var target = e.target || e.srcElement;
			//var target = e.target.cloneNode(true)
			//var target = document.elementFromPoint(e.clientX,e.clientY).parentNode.cloneNode(true);
			var target = document.elementFromPoint(e.clientX,e.clientY).cloneNode(true);
			var w=window.open("about:blank","","width=520,height=325");
			if(!w){
				window.alert("Please set to allow pop-up windows(请设置允许弹出窗口)");
			}else{
				//window.onload doesn't work fine on chrome, so try setTimeout
				//w.window.onload=function(){
				w.window.onload=setTimeout(function(){
					w.document.documentElement.replaceChild(document.head.cloneNode(true),w.document.head);
					//w.document.documentElement.replaceChild(document.body.cloneNode(true),w.document.body);
					//var s = document.createElement('style');
					//s.type = 'text/css';
					//s.innerHTML = 'div { display: none; }';
					//w.document.head.appendChild(s);
					//target.setAttribute("style","height: 100%; width: 100%; left: 0px; top: 0px;")
					target.style.height="100%";
					target.style.width="100%";
					target.style.top="0px";
					target.style.left="0px";
					target.style.margin="0px";
					target.style.padding="0px";
					w.document.body.setAttribute("style","height: 100%; width: 100%;margin: 0px;min-width:90%;min-height:90%; left: 0px; top: 0px;");
					//w.document.body.removeAttribute("class");
					//var d=document.createElement("div");
					//d.setAttribute("style","height: 100%; width: 100%; left: 0px; top: 0px;display: block;");
					//d.appendChild(target);
					////var js=document.querySelectorAll("script");
					////for (var i=0, len=js.length; i<len ;i++){
					////d.appendChild(js[i]);
					////}
					//w.document.body.appendChild(d);
					w.document.body.appendChild(target);
					//}
			},500);
			}
		}
	}, false);
}, false);