Greasy Fork is available in English.

bib - move author

rearrange author/title

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        bib - move author
// @namespace   diff
// @include     http*://bibliotik.me/*torrents*
// @include     http*://bibliotik.me/collections/*
// @grant	GM_addStyle
// @version     0.5
// @description rearrange author/title
// ==/UserScript==

GM_addStyle("span.title { font-weight: normal !important; }");
GM_addStyle("span.torYear, span.torFormat, span.torRetail, span.taglist { font-size: 85%; }");

var spans = document.querySelectorAll('span.title');
for (i=0; span=spans[i]; i++) {
	cell=span.parentNode;
	cell.style.padding = "0.5em";

	//var p = document.createElement('p');
	//p.style.fontSize = '40%';
	//span.parentNode.insertBefore(p, span.parentNode.firstChild);	
	
	var linkos = span.parentNode.querySelectorAll('a');
	var newlinks = new Array();
	for (a=(linkos.length-1); a>0; a--) {
		var src = linkos[a].href;
		if (src.indexOf("/creators/") != -1) {
			linkos[a].style.fontWeight = 'bold';
			newlinks.unshift(linkos[a].outerHTML);
			linkos[a].parentNode.removeChild(linkos[a]);
		}
	}
	
	if (newlinks.length > 0) {
		var s = document.createElement('span');
		s.style.fontSize = "85%";
		s.innerHTML = newlinks.join(', ');
		s.innerHTML += "<p style='fontsize:30%;'></p>";
		span.parentNode.insertBefore(s, span.parentNode.firstChild);
	}
}