Sehen Sie alle Funktionen in einer Website mit Konsole an

for(var b in window) { 
  if(window.hasOwnProperty(b)) console.log(b); 
}
Defiant Dove