-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathremove_deleted_threads.user.js
More file actions
28 lines (26 loc) · 1.04 KB
/
remove_deleted_threads.user.js
File metadata and controls
28 lines (26 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// ==UserScript==
// @name "Itt szoltam hozza" lista torolt topikjainak eltavolitasa
// @namespace https://www.prohardver.hu/
// @match https://prohardver.hu/forum/*
// @match https://prohardver.hu/tema/*
// @match https://mobilarena.hu/forum/*
// @match https://mobilarena.hu/tema/*
// @match https://logout.hu/forum/*
// @match https://logout.hu/tema/*
// @match https://itcafe.hu/forum/*
// @match https://itcafe.hu/tema/*
// @match https://gamepod.hu/forum/*
// @match https://gamepod.hu/tema/*
// @version 0.1
// @description A torolt topik tenyleges torlesehez felhasznaloi megerosites kell.
// @author milangfx
// @grant none
// @require http://code.jquery.com/jquery-latest.js
// @updateURL https://github.com/milangfx/prohardver-userscripts/raw/master/remove_deleted_threads.user.js
// ==/UserScript==
(function() {
'use strict';
$(document).ready(function() {
$('.deleted').next().children('a').eq(1).click();
});
})();