Tieba Common

Common JS for Baidu scripts by Gerald

Verzia zo dňa 13.07.2014. Pozri najnovšiu verziu.

Tento skript by nemal byť nainštalovaný priamo. Je to knižnica pre ďalšie skripty, ktorú by mali používať cez meta príkaz // @require https://update.greasyfork.ip-ddns.com/scripts/144/9629/Tieba%20Common.js

// ==UserScript==
// @name	Tieba Common
// @namespace	http://gera2ld.blog.163.com/
// @author	Gerald <[email protected]>
// @description	Common JS for Baidu scripts by Gerald
// ==/UserScript==

var $=unsafeWindow.$,PageData=unsafeWindow.PageData,utils=null,
		firefox=/Firefox\//.test(navigator.userAgent),gkey='__ge_firefox';
(function(){
function getObj(key,def){
	var v=ff[key];
	if(v==null&&def!=null) setObj(key,v=def);
	return v;
}
function setObj(key,val){ff[key]=val;}
function notice(title,msg){
	var n=getObj('msg',{});
	if(!n[title]) {
		n[title]=1;
		var d=document.createElement('div');
		d.setAttribute('style','position:fixed;z-index:999999;background:white;border:1px solid;border-radius:3px;padding:10px;top:50px;left:50px;');
		d.innerHTML='<a href=# style="float:right">关闭</a><h3>'+title+'</h3>'+msg;
		document.body.appendChild(d);
		d.firstChild.onclick=function(e){
			e.preventDefault();d.parentNode.removeChild(d);
		};
		return d;
	}
}
var ff=unsafeWindow[gkey];
if(!ff) ff=unsafeWindow[gkey]={};
utils=getObj('utils');
if(!utils)
	notice('未检测到依赖脚本!','请确认已安装并启用:<br><a target=_blank href=https://greasyfork.runtimutd.eu.org/scripts/118>Tieba Utilities</a><br><p align=right>——寂寞的原子</p>');
if(firefox) this.injectScript=function(s,a) {
		if(!a) a=[];a.unshift(gkey+'.utils');
		var c=document.createElement('script');
		c.innerHTML='('+s.toString()+')('+a.join(',')+')';c.async=true;
		document.body.appendChild(c);
		document.body.removeChild(c);
}
})();