/*
* @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>';
};
})();