From 1b00d4991ea695931bd4942f70f1e48612b0d5df Mon Sep 17 00:00:00 2001 From: jesus2099 Date: Sat, 20 Jul 2024 17:46:59 +0200 Subject: [PATCH] fix(inline recs): Fix mb.org exclude rules and add mb.eu match rule Exclude rule syntax is like include, not like match (//*.mb.org does not match //mb.org, only test.mb.org, beta.mb.org) Before this commit, exclude rules are not applied to main //mb.org website I am also excluding more unrelated pages (open edits, edit history page 2+, details, cover arts, ...) Add mb.eu support --- mb_qol_inline_recording_tracks.user.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mb_qol_inline_recording_tracks.user.js b/mb_qol_inline_recording_tracks.user.js index b2af12ad..2c648e63 100644 --- a/mb_qol_inline_recording_tracks.user.js +++ b/mb_qol_inline_recording_tracks.user.js @@ -7,9 +7,10 @@ // @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/*/* +// @exclude */release/add // @run-at document-end // @grant none // ==/UserScript==