Skip to content

Instantly share code, notes, and snippets.

@JulesAU
Created June 10, 2013 11:58
Show Gist options
  • Save JulesAU/5748230 to your computer and use it in GitHub Desktop.
Save JulesAU/5748230 to your computer and use it in GitHub Desktop.
What JS libraries / objects is that website using? Paste this into the JS console
for (var f in window)
{
try {
if (!window[f].toString().match(/native code/)) {
console.log(f);
}
} catch (e) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment