バンブラ配信楽曲の曲名の横にカテゴリと整理番号を付け足す
@@ -1,19 +1,15 @@
/*
- * @title 大合奏!ランキングの曲名の横に整理番号を付け足す
- * @description ほぼ週間ランキングと最近追加曲とホメランキングで使えると思うたぶんね
- * @include http://bandbros-p.nintendo.co.jp/download/downloadRanking/
- * @include http://bandbros-p.nintendo.co.jp/release/newRelease/
- * @include http://bandbros-p.nintendo.co.jp/ranking/evaluateRanking/
+ * @title バンブラ配信楽曲の曲名の横にカテゴリと整理番号を付け足す
+ * @description バンブラ配信楽曲で使えるが大合奏!ランキングでは使えない
+ * @include http://9129suppon.com/music/
* @license MIT License
*/
(function(){
-var main = document.getElementById('main');
-var a = main.getElementsByTagName('table')[0].getElementsByTagName('a');
+var main = document.getElementById('music');
+var a = main.getElementsByClassName('section_list')[0].getElementsByClassName('border_bottom_L music_list bg_black');
var b = a.length;
-
for (var i=0;i<b;i++) {
-a[i].innerHTML+='<span style="color: #000000;">('+a[i].href.match(/\/music\/musicDetail\/index\/([0-9]+)/)[1]+')</span>';
-}
-
+a[i].getElementsByTagName('a')[0].innerHTML+='<span style="color: #ffff00;">('+a[i].getElementsByTagName('a')[0].href.match(/\/music\/(.+\/[0-9]+)/)[1]+')</span>';
+};
})();
/*
* @title バンブラ配信楽曲の曲名の横にカテゴリと整理番号を付け足す
* @description バンブラ配信楽曲で使えるが大合奏!ランキングでは使えない
* @include http://9129suppon.com/music/
* @license MIT License
*/
(function(){
var main = document.getElementById('music');
var a = main.getElementsByClassName('section_list')[0].getElementsByClassName('border_bottom_L music_list bg_black');
var b = a.length;
for (var i=0;i<b;i++) {
a[i].getElementsByTagName('a')[0].innerHTML+='<span style="color: #ffff00;">('+a[i].getElementsByTagName('a')[0].href.match(/\/music\/(.+\/[0-9]+)/)[1]+')</span>';
};
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。