From c74a5a6302aa4ccdd5e9273f5ac154da23f0a531 Mon Sep 17 00:00:00 2001 From: jesus2099 Date: Sat, 25 May 2024 19:21:17 +0200 Subject: [PATCH] fix(inline recs): exclude rules are not used on MBS (non-beta) Exclude rule syntax is like include, not like match. So //*.mb.org does not include //mb.org Exclude-match only exists in Violentmonkey, and is not really needed. Adding mb.eu support Reset version to avoid needless git conflicts with other PR --- mb_qol_inline_recording_tracks.user.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/mb_qol_inline_recording_tracks.user.js b/mb_qol_inline_recording_tracks.user.js index 1464f704..8ad37558 100644 --- a/mb_qol_inline_recording_tracks.user.js +++ b/mb_qol_inline_recording_tracks.user.js @@ -1,15 +1,16 @@ // ==UserScript== // @name MB: QoL: Inline all recording's tracks on releases -// @version 2024.5.8 +// @version 2024.5.2 // @description Display all tracks and releases on which a recording appears from the release page. // @author ROpdebee // @license MIT; https://opensource.org/licenses/MIT // @namespace https://github.com/ROpdebee/mb-userscripts // @downloadURL https://raw.github.com/ROpdebee/mb-userscripts/main/mb_qol_inline_recording_tracks.user.js // @updateURL https://raw.github.com/ROpdebee/mb-userscripts/main/mb_qol_inline_recording_tracks.user.js +// @match *://*.musicbrainz.eu/release/* // @match *://*.musicbrainz.org/release/* -// @exclude *://*.musicbrainz.org/release/add -// @exclude *://*.musicbrainz.org/release/*/edit* +// @exclude */release/*/edit* +// @exclude */release/add // @run-at document-end // @grant none // ==/UserScript==