Get rewards doesn't close
in progress
M
Michał Będkowski
install Tamper Monkey and create this script in it:
// ==UserScript==
// @name Merlin UI enhancements
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Hide specific elements on Meriln
// @author micbed86
// @match https://www.getmerlin.in/chat
// @grant GM_addStyle
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
// Add CSS to hide elements immediately
const css = `
#merlinQuest {
display: none !important;
}
.bg-card.hover\\:bg-secondary.mb-6.cursor-pointer.items-center.justify-between.gap-1.rounded-2xl.border.px-4.py-3.text-sm.shadow-sm.transition-all.md\\:flex {
display: none !important;
}
.border-ds-border-magic.bg-ds-bg-subtle.mb-8.flex.w-full.items-center.justify-between.gap-2.rounded-lg.border.p-3 {
display: none !important;
}
`;
// Insert CSS into page
const style = document.createElement('style');
style.textContent = css;
document.head.appendChild(style);
// Backup method using JavaScript
function hideElements() {
const selectors = [
'#merlinQuest',
'.bg-card.hover\\:bg-secondary.mb-6.cursor-pointer.items-center.justify-between.gap-1.rounded-2xl.border.px-4.py-3.text-sm.shadow-sm.transition-all.md\\:flex',
'.border-ds-border-magic.bg-ds-bg-subtle.mb-8.flex.w-full.items-center.justify-between.gap-2.rounded-lg.border.p-3'
];
selectors.forEach(selector => {
const elements = document.querySelectorAll(selector);
elements.forEach(el => {
el.style.setProperty('display', 'none', 'important');
});
});
}
// Run on page load
window.addEventListener('load', hideElements);
// Run periodically
setInterval(hideElements, 1000);
// Run on DOM changes
const observer = new MutationObserver(hideElements);
observer.observe(document.documentElement, {
childList: true,
subtree: true
});
})();
V
Vijay Bharadwaj
in progress
V
Vijay Bharadwaj
We understand, Kahuê. Getting rid of it soon.