Recentemente, atualizamos nossa marca em nossas ofertas e mudamos os nomes de nossos planos de preços. Se você se inscreveu antes de 9 de agosto de 2021, clique em Planos anteriores para ver os planos aplicáveis.
 Garantimos que essa alteração não afetará sua experiência com o produto e nenhuma ação é necessária de sua parte.


Você pode adicionar Stickeroid AI como um Smart Plug em sua conta Freshdesk Messaging e começar a interagir com seus clientes usando Stickers.



Para obter instruções sobre como adicionar um plugue inteligente, consulte Trabalho com plugues inteligentes .


Snippet de código de amostra:


<style> .searchblock {position: relative; height: 37px; margin-top: 15px; margin-bottom: 15px} #stkr_search {background-color: # f6f8fa; border: 0; border-radius: 37px; height: 100% ; text-indent: 15px; color: # 5D657A; width: 100%; border: 1px solid # f6f8fa} #stkr_search: hover {background-color: #FFF; border: 1px solid #EBEDEF} #stkr_sticker ul {padding: 0 } .searchbutton {position: absolute; width: 37px; height: 37px; right: 2px; font-size: 18px; border-radius: 50%; top: 0; background-color: transparent} .grid {width: 96px; height: 126px; position: relative; display: inline-block; box-sizing: border-box;}. grid: hover {background-color: # f6f8fa; border-radius: 3px} .grid img {cursor: pointer; max -largura: 96px; posição: absoluta; superior: 0; margem: automático; borda: 0; preenchimento: 5px; direita: 0; esquerda: 0; inferior: 0; altura máxima: 110px} .paginação {posição: relativa; largura: 80px; altura: 37px; esquerda: 0; direita: 0; margem: automático; exibição: bloco; margem superior: 15px} .pagi {posição: absoluto; largura: 37px; altura: 37px; cor de fundo: # f6f8fa; font-size: 16px; border-radius: 50%; border: 1px solid # f6f8fa} .pagi: hover {border: 1px solid rgba (255,255,255,0.51); cor de fundo: #fff; box-shadow: 0 0 8px 0 rgba (0,0,0,0.035)}. Rightpos {right: 0} .leftpos {left: 0} < / style>
<div class = "searchblock">
<input placeholder = "Search Sticker" id = "stkr_search" type = "text" onkeypress = "fsearch (event)" />
<button value = "Pesquisar" class = "searchbutton icon-ic_search" type = "enviar" onclick = "fgo ()" />
</div>
<div id = "stkr_sticker">
</div>
<div class = "pagination">
<button style = "display: none" id = "stkr_iprev" class = "pagi icon-ic_arrow_left leftpos" type = "submit" onclick = "fprev ()" />
<button style = "display: none" id = "stkr_inext" class = "pagi icon-ic_arrow_right rightpos" type = "submit" onclick = "fnext ()" />
</div>
<script>
deixe vstkrCnt = -1;
deixe vstkrPage = 0;
deixe vUseThumbs = false;
function fsend (img, wdth, hght) {
if (vUseThumbs && hght> 120) {
lhght = 120;
lwdth = wdth / (hght / 120);
} outro {
lhght = hght;
lwdth = wdth;
} 
window.fcAgent.events.publish ('send_message',
{imagens: [{url: "https://stickeroid.com" + img, largura: lwdth, altura: lhght}]});
}
function showblock (bi) {
para (i = 0; i <= vstkrCnt; i ++) {
document.getElementById ("stkr_block" + i) .style.display = ((i == bi)? 'bloco': 'nenhum');
}
document.getElementById ("stkr_iprev"). style.display = ((bi> 0)? 'inline': 'nenhum');
document.getElementById ("stkr_inext"). style.display = ((bi <vstkrCnt)? 'inline': 'none');
}
function fprev () {
if (vstkrPage> 0) {
vstkrPage - = 1;
showblock (vstkrPage);
}
} 
function fnext () {
if (vstkrPage <vstkrCnt) {
vstkrPage + = 1;
showblock (vstkrPage);
}
}
função outres (dados) {
deixe div = document.getElementById ("stkr_sticker");
let txt = document.getElementById ("stkr_search"). value;
let html = '';
div.innerHTML = html;
vstkrCnt = -1;
vstkrPage = 0;
para (var i em dados) {
if (dados [i] .thumb) {
qt = "'" + dados [i] .img + "'";
if (i% 24 == 0) {
vstkrCnt + = 1;
if (vstkrCnt> 0) {
html + = '</ul>';
}
html + = '<ul style = "display: none" id = "stkr_block' + vstkrCnt + '">';
}
html + = '<li class = "grade" id = "stkr_li' + i + '"> <img style = "cursor: ponteiro" src = "https://stickeroid.com';
html + = data [i] .thumb + '"onclick =" fsend (' + qt + ',';
html + = data [i] .width + ',' + data [i] .height + '); "> </li>';
} 
};
if (vstkrCnt> -1) html + = '</ul>';
div.innerHTML = html;
showblock (vstkrPage);
}
function fgo () {
let txt = document.getElementById ("stkr_search"). value;
let key = "d147203e";
fetch ('https://stickeroid.com/bot?c=72&k='+key+'&s='+txt) .then (function (response) {return response.json ();}). then (function (json ) {outres (json);})
}
function fsearch (e) {
if (e.keyCode == 13) {
fgo ();
}
} 
</script>