Removes comments with 5 or more images from the team profile. May take a while to 'scan' the page though.
当前为
// ==UserScript==
// @name Ratpoison
// @description Removes comments with 5 or more images from the team profile. May take a while to 'scan' the page though.
// @match https://www.deviantart.com/team
// @version 1
// @grant GM_addStyle
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @namespace https://greasyfork.org/users/573136
// ==/UserScript==
setInterval(function check(){
var comments = document.querySelectorAll('[data-hook="comments_thread_item"]');
var commentsnum = comments.length;
comments.forEach(yeet);
function yeet(el){
var gifs = el.querySelectorAll('div[id*="viewer-"]:not(.public-DraftStyleDefault-block-depth0)');
var gifnum = gifs.length;
if (gifnum >= 5) {
gifs.forEach(el => el.remove());
el.querySelector('[data-hook="comment_body"]').innerHTML = '<p id="yeeted">spam identified. YEET!</p>';
GM_addStyle ( `
#yeeted{
font-family: "Comic Sans MS";
font-size: 12px;
color: #900;
}
`)
}
};
}, 4000);