Usuwanie mirko

usuwa wpisy UWAGA

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name       Usuwanie mirko
// @namespace  http://www.wykop.pl/*
// @version    1.0
// @description usuwa wpisy UWAGA
// @include     *://www.wykop.pl/*
// @exclude      *://www.wykop.pl/cdn/*
// @copyright  Arkatch
// @grant none
// ==/UserScript==
var HASHAJAX = [];
(function(){

    var ELEM = document.getElementById("nav");
    var DIVBUT = document.createElement('div');
    var BUTDEL = document.createElement('input');
    DIVBUT.setAttribute("style", "position:fixed;top:15px;left:40px;z-index: 101;");
    BUTDEL.setAttribute("id", "UsunTO");
    BUTDEL.setAttribute("onclick", "LOOP()");
    BUTDEL.setAttribute("value", "Usuń");
    BUTDEL.setAttribute("type", "button");
    BUTDEL.setAttribute("style", "width:45px;");
    DIVBUT.appendChild(BUTDEL);
    ELEM.appendChild(DIVBUT);
})();

(function(){
    var BLOCK = document.getElementById('itemsStream');
    var COMMENT = BLOCK.getElementsByClassName('ownComment');
    for(let i = 0;i<COMMENT.length;i++){
        var NAME;
        try{
            NAME = COMMENT[i].getElementsByClassName('affect hide confirm ajax')[0].getAttribute('data-ajaxurl');
        }catch(err){
            if(NAME===undefined)
                continue;
        }
        HASHAJAX[i] = NAME;
    }
var zix = 0;
window.LOOP = function LOOP(){
var ALLTIME = setTimeout(function (){
	DELALL(zix);
    console.log(zix);
	if( zix < HASHAJAX.length ){
        zix++;
        LOOP();
    }
	else{clearInterval(ALLTIME);}
	}, 100);
};
function DELALL(zix){
    var a = document.createElement("a");
    a.href = HASHAJAX[zix];
    var evt = document.createEvent("MouseEvents");
    //the tenth parameter of initMouseEvent sets ctrl key
    evt.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0,
                                true, false, false, false, 0, null);
    a.dispatchEvent(evt);
}
})();