mirror of
https://github.com/murdos/musicbrainz-userscripts
synced 2024-12-14 12:22:26 +00:00
Add commas to tags to ease cut'n'paste to MusicBrainz
MusicBrainz accept list of tags separated by commas.
This commit is contained in:
parent
9aef576d3b
commit
ed4e372ea6
1 changed files with 2 additions and 0 deletions
|
@ -18,6 +18,8 @@ $(document).ready(function(){
|
||||||
var release = retrieveReleaseInfo();
|
var release = retrieveReleaseInfo();
|
||||||
insertLink(release);
|
insertLink(release);
|
||||||
|
|
||||||
|
// append a comma after each tag to ease cut'n'paste to MB
|
||||||
|
$("div.tralbum-tags a:not(:last-child)").after(",");
|
||||||
});
|
});
|
||||||
|
|
||||||
// Analyze Bandcamp data and return a release object
|
// Analyze Bandcamp data and return a release object
|
||||||
|
|
Loading…
Reference in a new issue