FA No Custom Thumbnails

Changes all thumbnails for the default sized submission

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         FA No Custom Thumbnails
// @namespace    FurAffinity.Net
// @version      3
// @description  Changes all thumbnails for the default sized submission
// @author       JaysonHusky
// @match        *://www.furaffinity.net/*
// @exclude      *://www.furaffinity.net/view/*
// @exclude      *://www.furaffinity.net/msg/*
// @exclude      *://www.furaffinity.net/controls/*
// @exclude      *://www.furaffinity.net/journal/*
// @exclude      *://www.furaffinity.net/staff/*
// @grant        none
// @require      http://code.jquery.com/jquery-latest.js
// ==/UserScript==
(function() {
    'use strict';
    var thumburl;
   	$("img[src*='t.facdn.net']").each(function(index){
        var thumbnail_url=$(this).attr('src');
        if(thumbnail_url.indexOf('@150-') !=-1){
            thumburl=thumbnail_url.replace("@150","@400");
	        $(this).attr("src",thumburl);
        }
        else if(thumbnail_url.indexOf('@200-') !=-1){
            thumburl=thumbnail_url.replace("@200","@400");
	        $(this).attr("src",thumburl);
        }
        else if(thumbnail_url.indexOf('@250-') !=-1){
            thumburl=thumbnail_url.replace("@250","@400");
	        $(this).attr("src",thumburl);
        }
        else if(thumbnail_url.indexOf('@300-') !=-1){
            thumburl=thumbnail_url.replace("@300","@400");
	        $(this).attr("src",thumburl);
        }
        else {
            thumburl=thumbnail_url.replace("@150","@400");
	        $(this).attr("src",thumburl);
        }
	});
})();