No タイトル ステータス 重要度 担当 完了予定日 更新日時 記事数
40 #Plugin [Lunascape 正式版] ダミープラグ(イン) 進行中 AO 未定 2010-03-07 12:54 11
  • AO
  • 2009-05-15 19:26
//ダミープラグ(イン)用ユーザスクリプト
//Lunascape公式掲示板のタイトルを解り易く変更する
// ==UserScript==
// @include bbs.lunascape.jp/BBS.aspx
// @include bbs.lunascape.jp/ThreadDetail.aspx
// @include bbs.lunascape.jp/BBSList.aspx
// ==/UserScript==

(function () {
tempTitle = document.title

if(document.getElementById("ctl00_ContentPlaceMain_BBSNameLabel")){
tempTitle = document.getElementById("ctl00_ContentPlaceMain_BBSNameLabel").innerText;
}
if(document.getElementById("ctl00_ContentPlaceMain_BBSNameLabel1")){
tempTitle = document.getElementById("ctl00_ContentPlaceMain_BBSNameLabel1").innerText;
}
if(document.getElementById("ctl00_ContentPlaceMain_lblLunaBbsList")){
tempTitle = document.getElementById("ctl00_ContentPlaceMain_lblLunaBbsList").innerText;
tempTitle = tempTitle.replace("Lunascape","");
}
document.title = tempTitle;
})();
添付ファイル:
LunaBBS_title.user.js