Reddit Delete 🗑️

Automatically deletes every visible post/comment on your userpage

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         Reddit Delete 🗑️
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Automatically deletes every visible post/comment on your userpage
// @author       Agreasyforkuser
// @match        https://old.reddit.com/user/*
// @icon         https://www.redditstatic.com/desktop2x/img/favicon/android-icon-192x192.png
// @grant        none
// @license      MIT
// ==/UserScript==

function delete_content(){
    'use strict';
    function simulateClick(element) {
        const event = new MouseEvent('click', {
            view: window,
            bubbles: true,
            cancelable: true
        });
        element.dispatchEvent(event);
    }
    const linkObjects = document.querySelectorAll('.link, .comment');
    let currentIndex = 0;
    function deleteNextPost() {
        if (currentIndex < linkObjects.length) {
            const link = linkObjects[currentIndex];
            const deleteLink = link.querySelector('a[data-event-action="delete"]');
            if (deleteLink) {
                simulateClick(deleteLink);
                setTimeout(() => {
                    const yesLink = link.querySelector('a.yes');
                    if (yesLink) {
                        simulateClick(yesLink);
                        setTimeout(deleteNextPost, 300);
                    }
                }, 300);
            } else {
                currentIndex++;
                setTimeout(deleteNextPost, 300);
            }
        }
    }
    deleteNextPost();
}

    // Place a shortcut
    var link = document.createElement('a');
    link.href = 'javascript:void(0);';
    link.textContent = 'delete all content🗑️';
    link.style.color = 'white';
    link.style.backgroundColor = 'red';
    link.style.padding = '5px';
    link.style.fontWeight = 'bold';
    link.style.borderRadius = '20px';
    link.style.display = 'inline-table';
    link.addEventListener('click', function(event) {
        event.preventDefault();
        if (window.confirm('Are you sure you want to delete all visible submissions and comments?')) {
            delete_content();}
    });
    document.querySelector('.menuarea').appendChild(link);