Tieba Common

Common JS for Baidu scripts by Gerald

目前為 2014-08-21 提交的版本,檢視 最新版本

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.cn-greasyfork.org/scripts/144/14450/Tieba%20Common.js

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name	Tieba Common
// @namespace	http://geraldl.ml/
// @author	Gerald <[email protected]>
// @description	Common JS for Baidu scripts by Gerald
// @version	1.0
// ==/UserScript==

if(typeof unsafeWindow=='undefined') unsafeWindow=window;
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.org/scripts/118>Tieba Utilities</a><br><p align=right>——寂寞的原子</p>');
/*if(firefox) this.injectScript=function(s,a) {
	if(!a) a=[];a.unshift('window["'+gkey+'"].utils');
	var c=document.createElement('script');
	c.innerHTML='('+s.toString()+')('+a.join(',')+')';c.async=true;
	document.body.appendChild(c);
	document.body.removeChild(c);
}*/
})();