Greasy Fork is available in English.
Ebay description button fix
// ==UserScript==
// @name Ebay Fix Desc Button
// @description Ebay description button fix
// @namespace http://greasyfork.icu/users/9560
// @include http://*.ebay.*/*
// @version 0.0.1.20150306065214
// ==/UserScript==
//If desc button visible, remove it and show the desc
if($("#vi_snippetdesc_btn")){
$("#vi_snippetdesc_btn").hide()
$("#vi-snippet-description-main").append($("#vi-desc-olay-main").html())
}