| No | タイトル | ステータス | 重要度 | 担当 | 完了予定日 | 更新日時 | 記事数 |
|---|---|---|---|---|---|---|---|
| 40 | #Plugin [Lunascape 正式版] ダミープラグ(イン) | 進行中 | 高 | AO | 未定 | 2010-03-07 12:54 | 11 |
|
|---|
| //ダミープラグ(イン)用ユーザスクリプト //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; })(); |
|