// ==UserScript==
// @name         Pinterest Anonymous
// @namespace    http://tampermonkey.net/
// @version      0.1
// @author       etc3tera
// @match        https://www.pinterest.com/search/pins/*
// @match        https://www.pinterest.com/pin/*
// @require http://code.jquery.com/jquery-3.4.1.min.js
// @grant        none
// ==/UserScript==

// https://www.pinterest.com/search/pins/?rs=ac&len=2&q=paper%20crafts&eq=paper&etslf=27134

(function() {
    'use strict';
    setInterval(function() {
        var popup = $('[data-test-id="signup"]');
        if (popup.length > 0) {
            popup.remove();
            console.log('remove popup')
        }
        var popup2 = $('[data-test-id="fullPageSignupModal"]');
        if (popup2.length > 0) {
            popup2.remove();
            console.log('remove popup')
        }
        var gw = $('[data-test-id="giftWrap"]');
        if (gw.length > 0) {
            gw.remove();
            console.log('remove cover')
        }
    }, 50);
    $('body').css('cssText', 'overflow: auto!important')
})();