TROFMA Text Correction

Corrects the automatic conversion on TROFMA forum of the sequence "gs" to a line of "***"

// ==UserScript==
// @name        TROFMA Text Correction
// @namespace   trofma
// @description Corrects the automatic conversion on TROFMA forum of the sequence "gs" to a line of "***"
// @include     http://www.trofma.com/trofma/forum/*
// @match       http://www.trofma.com/trofma/forum/*
// @version     1.0
// @grant       none
// ==/UserScript==

(function(){'use strict';var k=document.getElementById('Kunena');if(k){k.innerHTML=k.innerHTML.split('- ************************** -').join('gs');}})();