Skip to main content
Version: v9.0.0

Getting started text translator

To install the plugin, you must insert the Hand Talk script and instantiate the HT class, putting an object with the token and other settings as an argument.

In the installation example on the right, we use the latest version of the script hosted at https://plugin.handtalk.me/web/latest/handtalk.min.js, after inserting the Hand Talk script we instantiate the HT class by passing through parameter an object with the token.

Without a valid token, the tool will not work, issuing the error OPS! O site não está mais acessível. after clicking the tool's enable button.

If you already have a token, check if you have inserted the token correctly according to the example and if you have trouble, contact our support via email [email protected].

If you don't already have one, you can purchase a token for your domain by talking to one of our consultants through the page handtalk.me.

Installation example

Javascript

var ht = new HT({
// Change it for you access token
token: "TOKEN"
});

HTML

<body>
<h1>Hand Talk</h1>
<h2>Count on the help of Hugo and Maya, our virtual translator, to make your communication more accessible.</h2>
<p>We offer digital translation to accessibility in Libras, the Brazilian Sign Language.</p>
<!-- Takes the latest version of the HandTalk plugin -->
<script src="https://plugin.handtalk.me/web/latest/handtalk.min.js"></script>
<script>
var ht = new HT({
// Change it to your access token
token: "TOKEN"
});
</script>
</body>