OK, let's edit now the manifest. We can open it of course using Wakanda 
We can quickly edit the first fields of the file to make it match our new JSMin extension.
Code:
"name": "JSMin",
"version": "1.0.0",
"description": "Wakanda Studio JSMin extension",
"icon": "jsmin.png",
Now we have a "senders" section, that shows all the places where the extensions commands will be called. We want only one, with just a button in the code editor toolbar.
So let's keep only the first sender, and edit it as following :
Code:
"senders": [
{
"location": "codeEditorToolbar",
"tips": "Make your code smaller for faster execution",
"actionName": "minify"
}
],
It means that the action "minify" will be sent by a button in the code editor toolbar. No need to specify a title or an icon for the button, it will use by default the extension icon ("jsmin.png") and the title will be given by the action.
Now we can go to the second part of the manifest, describing the action.
Let's edit the first action of our original file, and remove the others.
We change the name and title for the following:
Code:
"actions": [
{
"name": "minify",
"title": "JSMin",
"targets":["com.netscape.javascript-source"]
}
],
We now have a complete manifest, with one action named "minify", that will address only Javascript files. This action will be called from a button of the code editor toolbar.