[Konachan] Tag Completion: Fix Tag Colors

Fixes the colors for circle and style tags in the tag completion boxes.

// ==UserScript==
// @name		[Konachan] Tag Completion: Fix Tag Colors
// @namespace	Zolxys
// @description	Fixes the colors for circle and style tags in the tag completion boxes.
// @include		/^https?://konachan\.com//
// @include		/^https?://konachan\.net//
// @exclude		/^[^#?]+\.\w+($|\?|#])/
// @version		1.3
// ==/UserScript==
var ne = document.createElement('script');
ne.setAttribute('type','text/javascript');
ne.innerHTML='Post.tag_type_names[5] = "style";\nPost.tag_type_names[6] = "circle";';
document.head.appendChild(ne);