is it possible to access to better touch tools variables of trigger conditions from apple script or java script? i want to use visible_window_list for example

is it possible to access to better touch tools variables of trigger conditions from apple script or java script? i want to use visible_window_list for example

Yes, e.g.

tell application "BetterTouchTool"
	
	return get_string_variable "visible_window_list"
	
end tell

Thank you very much