/*
* @title 影舞のリストに編集ページへのリンクを追加する
* @description 影舞のリストに編集ページへのリンクを追加する
* @include http://*
* @license MIT License
* @require jQuery
*/
$('a').each(function() {
var a = $(this);
if (/action=view_report/.test(a.attr('href'))) {
a.after('<a href="' + a.attr('href') + '&s=1#form">編集</a>')
.after(' ');
}
});