Script do Anão - fatalmodel.com

10/12/2023, 14:37:28

// ==UserScript==
// @name        Script do Anão - fatalmodel.com
// @namespace   Violentmonkey Scripts
// @match       https://fatalmodel.com/*
// @grant       none
// @version     1.0
// @author      -
// @description 10/12/2023, 14:37:28
// ==/UserScript==

document.addEventListener('click', function() {
    setTimeout(function() {
        verificarERemoverAutoBlocked();
        removerElementosPremium();
    }, 500);
});

function verificarERemoverAutoBlocked() {
    var elementosAutoBlocked = document.querySelectorAll('.grid-gallery__post.grid-gallery__post–auto-blocked');

    elementosAutoBlocked.forEach(function(elemento) {
        elemento.classList.remove('grid-gallery__post–auto-blocked');
    });
}


function removerElementosPremium() {
    var elementosPremium = document.querySelectorAll('.grid-gallery__post.grid-gallery__post–premium');

    elementosPremium.forEach(function(elemento) {
         elemento.classList.remove('grid-gallery__post–premium');
    });
}