node / whatcd gazelle vertical latest topics

// ==UserScript==
// @name        whatcd gazelle vertical latest topics
// @include     /https?://www\.empornium\.(me|sx).*/
// @include     /https?://femdomcult\.org.*/
// @version     1
// @require     http://code.jquery.com/jquery-2.1.1.js
// @grant       none
// ==/UserScript==

"use strict";

this.$ = this.jQuery = jQuery.noConflict(true);

function unwrap() {
    var $latest_topics = jQuery('.box.pad.latest_topics');
    $latest_topics.find('span.sicon:not(:first-child)').before('<br>');
}

unwrap();