mirror of
https://github.com/murdos/musicbrainz-userscripts
synced 2024-12-12 19:32:27 +00:00
encyclopedisque: added MB links for artists.
This commit is contained in:
parent
f9b4b1e51a
commit
043ab5615a
1 changed files with 6 additions and 0 deletions
|
@ -59,6 +59,12 @@ function insertMBLinks() {
|
|||
});
|
||||
});
|
||||
|
||||
$('h2, div.main').find('a[href*="/artiste/"]').each(function() {
|
||||
var $link = $(this);
|
||||
var external_url = 'http://www.encyclopedisque.fr' + $link.attr('href');
|
||||
mblinks.searchAndDisplayMbLink(external_url, 'artist', function (link) { $link.before(link); } );
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
// Analyze Encyclopedisque data and prepare to release object
|
||||
|
|
Loading…
Reference in a new issue