يشيل الـ blur من صور Grok NSFW
当前为
// ==UserScript==
// @name Grok Unblur - Zoe
// @namespace http://tampermonkey.net/
// @version 1.0
// @description يشيل الـ blur من صور Grok NSFW
// @author Zoe
// @match https://grok.x.ai/*
// @match https://x.com/grok/*
// @grant none
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
function unblur() {
document.querySelectorAll('img').forEach(img => {
const style = window.getComputedStyle(img);
if (style.filter && style.filter.includes('blur')) {
img.style.filter = 'none !important';
img.style.transform = 'scale(1.001)';
console.log('[Zoe] Unblurred:', img.src);
}
});
}
new MutationObserver(unblur).observe(document.documentElement, { childList: true, subtree: true });
unblur();
setInterval(unblur, 500);
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址