You want to create additional menu options for a specific item or for all items in a Klip.
To add a custom option in any item's right-click menu, use Items.actions(). Parameters should be pairs of text to be displayed in the menu and the function associated with it. Note that the custom menus are not saved across KlipFolio sessions.
function onRefresh() { ... Items.actions = [ "Custom Menu Option 1", firstFunction, "Custom Menu Option 2", secondFunction ]; ... }
See Items.actions and Item.actions in the API documentation for more details and examples.