If showAbout defined globally, you should be able to write showAbout(); in the console and see the result. If not, then you probably put your functions in the scope function as follows:
(function() { function showAbout() { } })();
If so, good for you , you avoid creating global variables / functions. But this means that you cannot access these functions from the console, because the console has access only to the global scope.
If you want to export any of them so that you can use them from the console (perhaps only temporarily, for debugging), you can do this as follows:
(function() { window.showAbout = showAbout; function showAbout() { } })();
This explicitly places the showAbout property in a global object ( window ) that references your function. Then showAbout(); The console will work.
source share