Can I display my tools manually using Javascript?

Yes, you can program to display Zotabox tools using below Javascript code:

window.addEventListener(‘onLoadZotabox’, function (e) {
if (your_conditions) { //Show tool with your custom conditions. Eg. category=”mobile”
Zotabox.show(toolID) //Get tool ID in its settings page URL
}
}, false)