Hi,
The generators define the JavaScript (Python, etc.) code that the blocks produce. In order for the blocks to appear in your toolbox, you want the block definitions, which would look something like this (in the JavaScript format):
Blockly.Blocks['to_int] = {
init: function() {
this.appendValueInput("VALUE")
.setCheck(null)
.appendField("int");
this.setInputsInline(false);
this.setOutput(true, "int");
this.setColour(65);
this.setTooltip("");
this.setHelpUrl("");
}
};
From your pictures, it appears you already have the new blocks you want to use saved in your Block library. If so, you can get the definitions for them by clicking on the Block Exporter tab and then selecting all blocks you want to get the definitions for under Block Selector. Click the Block Definition(s) checkbox, select JavaScript for the Format dropdown, enter a filename such as converter_blocks.js from the dropdown and then export it. (You can uncheck the generator stub(s) for now, but you'll at least need the JavaScript generators later to run these block-based programs.) After exporting, you can move the file to the same directory as your HTML file and then import this script after your existing ones as Beka had mentioned with something like <script src = "converter_blocks.js"></script>.
Hope this helps. Feel free to follow up if you have any additional questions.
Best,
Jason