[Konachan / yande.re / LB] Thumbnails: Show Large Thumbnails (Most Pages)

Shows larger thumbnails on all pages except comments and pool pages.

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 or Violentmonkey 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		[Konachan / yande.re / LB] Thumbnails: Show Large Thumbnails (Most Pages)
// @namespace	Zolxys
// @description	Shows larger thumbnails on all pages except comments and pool pages.
// @include		/^https?://konachan\.com/(post(/(similar|delete)(/\d+)?)?|user/show/\d+|wiki/show|note)/?($|\?|#)/
// @include		/^https?://konachan\.net/(post(/(similar|delete)(/\d+)?)?|user/show/\d+|wiki/show|note)/?($|\?|#)/
// @include		/^https?://yande\.re/(post(/(similar|delete)(/\d+)?)?|user/show/\d+|wiki/show|note)/?($|\?|#)/
// @include		/^https?://lolibooru\.moe/(post(/(similar|delete)(/\d+)?)?|user/show/\d+|wiki/show|note)/?($|\?|#)/
// @version		1.3
// ==/UserScript==
if (document.getElementById('post-list-posts') != null) {
	var a = document.getElementsByTagName('img'); // Searches from document instead of id 'post-list-posts' because that id occurs multiple times on the profile page.
	for (var i = 0; i < a.length; i++) {
		var c = 0;
		var d = a[i];
		while (d.id != 'post-list-posts') {
			d = d.parentNode;
			++c;
			if (d == null)
				break;
			if (c == 2 && d.nodeName != 'DIV')
				break;
			if (c == 4) {
				if (d.id != 'post-list-posts')
					break;
				a[i].parentNode.parentNode.style.height=((/konachan/.test(location.host))? '270px' : '300px'); // div
				if (a[i].title != '') {
					a[i].parentNode.parentNode.parentNode.style.width='310px'; // li
					a[i].parentNode.parentNode.style.width='310px'; // div
					a[i].removeAttribute('width');
					a[i].removeAttribute('height');
				}
			}
		}
	}
}
document.getElementById('index-hover-overlay').firstElementChild.style.display = 'none';