mirror of
https://github.com/murdos/musicbrainz-userscripts
synced 2024-12-13 20:02:27 +00:00
Add instructions for obtaining a Last.fm API key
This commit is contained in:
parent
a7139415ba
commit
37178aab78
1 changed files with 5 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name Musicbrainz UI enhancements
|
// @name Musicbrainz UI enhancements
|
||||||
// @description Various UI enhancements for Musicbrainz
|
// @description Various UI enhancements for Musicbrainz
|
||||||
// @version 2021.3.29.1
|
// @version 2023.4.23.1
|
||||||
// @downloadURL https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/master/mb_ui_enhancements.user.js
|
// @downloadURL https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/master/mb_ui_enhancements.user.js
|
||||||
// @updateURL https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/master/mb_ui_enhancements.user.js
|
// @updateURL https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/master/mb_ui_enhancements.user.js
|
||||||
// @icon http://wiki.musicbrainz.org/-/images/3/3d/Musicbrainz_logo.png
|
// @icon http://wiki.musicbrainz.org/-/images/3/3d/Musicbrainz_logo.png
|
||||||
|
@ -15,7 +15,9 @@
|
||||||
this.$ = this.jQuery = jQuery.noConflict(true);
|
this.$ = this.jQuery = jQuery.noConflict(true);
|
||||||
|
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
LASTFM_APIKEY = null;
|
// Follow the instructions found at https://www.last.fm/api/authentication
|
||||||
|
// then paste your API Key between the single quotes in the variable below.
|
||||||
|
LASTFM_APIKEY = '';
|
||||||
|
|
||||||
// Highlight table rows
|
// Highlight table rows
|
||||||
$('table.tbl tbody tr').hover(
|
$('table.tbl tbody tr').hover(
|
||||||
|
@ -39,7 +41,7 @@ $(document).ready(function () {
|
||||||
|
|
||||||
let re;
|
let re;
|
||||||
|
|
||||||
// Top tracks from Lastfm
|
// Top tracks from Last.fm
|
||||||
re = new RegExp('musicbrainz.org/artist/([a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})$', 'i');
|
re = new RegExp('musicbrainz.org/artist/([a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})$', 'i');
|
||||||
if (LASTFM_APIKEY && window.location.href.match(re)) {
|
if (LASTFM_APIKEY && window.location.href.match(re)) {
|
||||||
$('h2.discography').before('<h2 class="toptracks">Top Last.fm recordings</h2><ul class="toptracks" />');
|
$('h2.discography').before('<h2 class="toptracks">Top Last.fm recordings</h2><ul class="toptracks" />');
|
||||||
|
|
Loading…
Reference in a new issue