Plugins in Netsuite First create plugin type then create plugin implementation then use ‘N/plugin’ module var addnum= plugin.loadImplementation({ type:’customscript_add_numbers’ }); to load main plugin var addnum2 = plugin.loadImplementation({ type:’customscript_add_numbers’, implementation: ‘customscript150’ }); to load plugin implementation Debugger To debug existing ...