11-01-2015, 05:25 AM
|
|
small trip to underworld
Industry Role:
Join Date: Mar 2012
Location: first gen intel 80386/nintendo-gb/arcade/ps1/internet person
Posts: 4,927
|
hope someone can help .
i'm testing a firexfox version now...
Quote:
// ==UserScript==
// @name gfy ignore list
// @description block threads, posts, etc from certain users
// @include https://gfy.com/*
// @include http://*.gfy.com/*
// @require http://ajax.googleapis.com/ajax/libs.../jquery.min.js
// @version 1.0
// @grant none
// ==/UserScript==
$(document).ready(function () {
$('tbody#threadbits_forum_26 tr').each(function (thread_index, thread_value) {
var hide_users = ['DamianJ','DVTimes','Rochard','Twitter'];
var thread_block = $(this);
var thread_starter = $('span[style="cursor:pointer"]', this).text();
$(hide_users).each(function (hide_index, hide_user) {
if (thread_starter === hide_user)
{
thread_block.remove();
}
});
});
$('table[id^="post"]').each(function (post_index, post_value) {
var post_block = $(this);
var post_author = $('a.bigusername', this).text();
$(hide_users).each(function (hide_index, hide_user) {
if (post_author === hide_user)
{
post_block.remove();
}
});
});
});
|
what i'm doing wrong?
__________________
automatic exchange - paxum , bitcoin,pm, payza
. daizzzy signbucks caution will black-hat black-hat your traffic
ignored forever :zuzana designs
|
|
|