// ==UserScript==
// @name Xポップ消し
// @namespace https://viayoo.com/
// @version 0.1
// @description Xのポップアップを削除
// @author You
// @run-at document-end
// @match https://x.com/*
// @grant none
// ==/UserScript==

(function() {
'use strict';

function removeBanner() {

document.querySelectorAll('[role="dialog"]').forEach(el => el.remove());
document.querySelectorAll('[aria-modal="true"]').forEach(el => el.remove());

document.querySelectorAll('div').forEach(el => {
const s = getComputedStyle(el);

if (
s.position === 'fixed' &&
s.backgroundColor.startsWith('rgba(')
) {
el.remove();
}
});

document.body.style.overflow = 'auto';
document.documentElement.style.overflow = 'auto';
}

setInterval(removeBanner, 500);
})();