View Single Post
Old 04-03-2019, 10:47 PM  
ghjghj
So Fucking Banned
 
Join Date: Jun 2005
Posts: 3,770
Quote:
Originally Posted by Bladewire View Post
Just in case any of you were misled by Mr. Pheer into thinking he made the GFY Tampermonkey script. He did not.

Mr Pheer not only did NOT create the script

Mr Pheer did NOT give credit to the original script creator in the code.

Why would someone pass on a script with modifications and not credit the original script creator?

The only time I've seen a script modifier pass a script on without crediting the original creator was when they sre trying to pass the script on as their own.

Why did Mr. Pheer not credit the original script creator in his modified code?

How can we verify the original script creator that Mr. Pheer never credits in the code he passed along as his own "GFY 1.0" script?

Can anyone here track this down to it's true origins?

Code:
// ==UserScript==

2

// @name gfy.com

3

// @description block threads, posts, etc from certain users

4

// @include https://gfy.com/*

5

// @include http://*.gfy.com/*

6

// @include https://gfy.com/*

7

// @include https://*.gfy.com/*

8

// @require https://code.jquery.com/jquery-1.7.2.min.js

9

// @version 1.0

10

// @grant none

11

// ==/UserScript==

12

​

13

var hide_users = [

14

'Mr Pheer' , 'escorpio', 'american pervert' , 'Scott McD' , 'Lichen' , 'imabro', 'tfto' , 'celandina' , 'optics' , 'aimike' , 'huey' , 'martin' , 'Acepimp' , 'DraX' , 'onwebcam' , 'OneHungLo' , 'wehateporn' , 'Matt 26z' , 'jezz87' , 'Drax' , 'adultinnovation' , 'ghjghj' , 'Diomed' , 'Kittens' , 'Axeman' , 'Phoenix' , 'Boozer' , 'candyflip' , 'Smack dat'

15

];

16

​

17

$(document).ready(function () {

18

$('#threadslist tbody tr').each(function (thread_index, thread_value) {

19

var thread_block = $(this);

20

var thread_starter = $('span[style="cursor:pointer"]', this).text();

21

$(hide_users).each(function (hide_index, hide_user) {

22

if (thread_starter === hide_user) {

23

// $('#threadslist tbody:last').append("<tr style='opacity: 0.5'>" + thread_block.html() + "</tr>");

24

thread_block.remove();

25

}
Blocked alt-right hate fake nic troll auto bot shit post reply in 3.. 2.. 1...



















ghjghj is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote