Hides AI-generated posts on MyReadingManga
// ==UserScript==
// @name Hide AI-Generated Posts (MyReadingManga)
// @namespace r.arvie
// @version 1.2
// @description Hides AI-generated posts on MyReadingManga
// @match https://myreadingmanga.info/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
function hideAIGeneratedPosts() {
document.querySelectorAll('article').forEach(article => {
if (article.className.includes('tag-ai-generate')) {
article.style.display = 'none';
}
});
}
hideAIGeneratedPosts();
const observer = new MutationObserver(hideAIGeneratedPosts);
observer.observe(document.body, { childList: true, subtree: true });
})();