Edit in JSFiddle

$(function(){
    //Others sites
    var ShareURL = 'http://example.com'; 
    var ShareTitle = 'My page title';
    
    //uCoz's sites
	//var ShareURL = 'http://'+'exemplo.ucoz.com.br'+'$REQUEST_URI$'; 
    //var ShareTitle = '$ENTRY_TITLE$'; //for entry pages
    
    $.getJSON( "http://is.gd/create.php?callback=?", {
        url: ShareURL,
        format: "json"
    }).always(function( data ) {
        var ShortURL = data.shorturl;
        (ShortURL == undefined) ? ShareShortURL = ShareURL : ShareShortURL = ShortURL;
        //Gerar botões
        new GetShare({
            root: $('.facebook'),
            network: 'facebook',
            share: {
                url: ShareURL,
                message: ShareTitle
            }
        });
        new GetShare({
            root: $('.twitter'),
            network: 'twitter',
            share: {
                url: ShareURL,
                message: ShareTitle+' '+ShareShortURL
            }
        });
        new GetShare({
            root: $('.googleplus'),
            network: 'googleplus',
            share: { 
                url: ShareURL
            }
        });
    }).fail(function() {
        console.error( "SocialShare: Ops! Houve um erro ao encurtar o URL." );
  });
}.call(this));
<div id="share" class="share">
 <a href="javascript://" class="facebook"></a>
 <a href="javascript://" class="twitter"></a>
 <a href="javascript://" class="googleplus"></a>
 </div> 

<h2> Informações importantes </h2>
<ul> 
    <li>O contador de compartilhamentos do Google Plus usa o uCoz (http://ucoz_site_address/index/86) pois a requisição do API do GetShar.es está falhando e/ou demorando de responder.</li>
    <li>O contador do uCoz não tem parâmetro de definir o URL, pois do lado do servidor é requisitado o URL da janela e retorna os dados, então os resultados aqui no jsfiddle.net é diferente do URL definido nas configurações do JS.</li>
</ul>
<h2>Hashtags com as tags da postagem</h2>
<p>Para o uCoz fiz um script para tornar as tags das postagens em hashtags, mas preferi não usar especialmente no Twitter se não iria exceder os 200 caracteres mesmo com URL encurtado. Se vocês quiserem usar o código está abaixo</p>
<code data-type="javascript">
    // Uso de hashtags através das tags das postagens
    var ShareTags = '&lt;?substr($TAGS$,9,-19)?&gt;'.replace(/&lt;\/a&gt;/g,'').split(', ');<br>
    var ShareHashtags = '';<br>
    for(i=0;i&lt;ShareTags.length;i++){<br>
        var strpos = ShareTags[i].indexOf('"&gt;');<br>
        var ShareTag = ShareTags[i].slice(strpos+2).replace(/ /g,'_');<br>
        var ShareHashtags = ShareHashtags +' #'+ShareTag;<br>
    }<br>
    @ShareHashtags: variável com as hashtags
</code>
/*
Copyright (c) 2015 by Andreas Storm (http://codepen.io/andreasstorm/pen/yCFxo)
Customized by Ennio Sousa (http://uid.me/shzlot), (http://developers.ucoz.com.br)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
 /*@import url("http://fonts.googleapis.com/css?family=OpenSans");*/
.share * {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
}
.share a {
  text-decoration: none;
  color: #111;
}
.share {
  /*position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);*/
  /*custom align*/
  text-align:center; 
  background-color:#eee;
  border:1px solid #ddd;
  padding:15px 0;
  border-radius:5px;
}
.share >a {
  margin-right: 20px;
  display: inline-block;
  /*margin-bottom: 20px;*/
}
.share >a:last-child {
  margin-right: 0px;
}
.getshare input[type="checkbox"] {
  display: none;
}
label {
  cursor: pointer;
  display: inline-block;
}
label:before {
  position: relative;
  display: inline-block;
  line-height: 32px;
  padding: 0px 9px 0px 25px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: #fff;
}
.twitter label:before {
  content: '\0054\0075\00ed\0074\0065'; /* "Tuíte" em unicode */
  background: #00acee url("http://developers.ucoz.com.br/src/getshares/twitter.svg") no-repeat 5px 10px;
  -webkit-background-size: 14px;
  -moz-background-size: 14px;
  background-size: 14px;
}
.facebook label:before {
  content: '\0043\006f\006d\0070\0061\0072\0074\0069\006c\0068\0065'; /* "Compartile" em unicode */
  background: #3b5998 url("http://developers.ucoz.com.br/src/getshares/facebook.svg") no-repeat 7px 9px;
  -webkit-background-size: 7px;
  -moz-background-size: 7px;
  background-size: 7px;
}
.googleplus label:before {
  content: '\0043\006f\006d\0070\0061\0072\0074\0069\006c\0068\0065'; /* "Compartile" em unicode */
  background: #dd4b39 url("http://developers.ucoz.com.br/src/getshares/googleplus.svg") no-repeat 6px 10px;
  -webkit-background-size: 14px;
  -moz-background-size: 14px;
  background-size: 14px;
}
.getshare-counter {
  background: #fff;
  border: 1px solid #eee;
  padding: 0px 9px;
  margin-left: 8px;
  color: #383d4b;
  line-height: 32px;
  display: inline-block;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}
.getshare-counter:after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  width: 7px;
  height: 7px;
  background: #fff;
  border-left: 1px #eee solid;
  border-bottom: 1px #eee solid;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  left: -5px;
  top: 12px;
}

External resources loaded into this fiddle: