[Konachan / yande.re / LB] Menu: Replace Dropdown Buttons

Replaces the squares in the main menu bar which display rather small in Firefox and Chrome with downward pointing triangles that are a lot easier to click.

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] Menu: Replace Dropdown Buttons
// @namespace	Zolxys
// @description	Replaces the squares in the main menu bar which display rather small in Firefox and Chrome with downward pointing triangles that are a lot easier to click.
// @include		/^https?://konachan\.com/[^#?]/
// @include		/^https?://konachan\.net/[^#?]/
// @include		/^https?://yande\.re/[^#?]/
// @include		/^https?://lolibooru\.moe/[^#?]/
// @exclude		/^[^#?]+\.\w+($|\?|#)/
// @version		1.2
// ==/UserScript==
var c = document.getElementById('header').getElementsByTagName('a');
for (var i = 0; i < c.length; i++)
 if (c[i].childNodes.length) {
	var o = c[i].firstChild;
	if (o.nodeType == 3) {
		if (o.data.trim() == '\u25A0')
		 o.data = o.data.replace('\u25A0','\u25BC');
	}
}