mirror of
https://github.com/murdos/musicbrainz-userscripts
synced 2024-12-14 12:22:26 +00:00
discids_detector: fix lztr
This commit is contained in:
parent
c81ce77258
commit
a786431b5f
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name Musicbrainz DiscIds Detector
|
// @name Musicbrainz DiscIds Detector
|
||||||
// @namespace http://userscripts.org/users/22504
|
// @namespace http://userscripts.org/users/22504
|
||||||
// @version 2016.02.20.0
|
// @version 2016.03.05.0
|
||||||
// @description Generate MusicBrainz DiscIds from online EAC logs, and check existence in MusicBrainz database.
|
// @description Generate MusicBrainz DiscIds from online EAC logs, and check existence in MusicBrainz database.
|
||||||
// @downloadURL https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/master/mb_discids_detector.user.js
|
// @downloadURL https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/master/mb_discids_detector.user.js
|
||||||
// @updateURL https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/master/mb_discids_detector.user.js
|
// @updateURL https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/master/mb_discids_detector.user.js
|
||||||
|
@ -23,7 +23,7 @@ var CHECK_IMAGE = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAA
|
||||||
|
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
|
|
||||||
if (window.location.host.match(/(what\.cd|lztr\.us)|mutracker\.org/)) {
|
if (window.location.host.match(/what\.cd|lztr\.(us|me)|mutracker\.org/)) {
|
||||||
gazellePageHandler();
|
gazellePageHandler();
|
||||||
} else if (window.location.host.match(/avaxhome\.ws/)) {
|
} else if (window.location.host.match(/avaxhome\.ws/)) {
|
||||||
avaxHomePageHandler();
|
avaxHomePageHandler();
|
||||||
|
|
Loading…
Reference in a new issue