Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name eve-ru blocklist
- // @namespace nope
- // @include http://forum.eve-ru.com/*
- // @version 1
- // @grant none
- // ==/UserScript==
- document.addEventListener('DOMContentLoaded', function (){
- var blockedList = document.querySelectorAll("div.post_ignore");
- for( i = 0; i < blockedList.length; i++ ){
- blockedList[i].parentNode.parentNode.removeChild(blockedList[i].parentNode);
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement