Skip to content

Instantly share code, notes, and snippets.

@AhmedKamal20
Last active June 11, 2016 12:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AhmedKamal20/74dab0f1f342ae950c6006a88ff75f90 to your computer and use it in GitHub Desktop.
Save AhmedKamal20/74dab0f1f342ae950c6006a88ff75f90 to your computer and use it in GitHub Desktop.
Extract Your Chrome Extensions Titles From The Console
// Open chrome://extensions/
// F12 >> The Console
var titles = document.querySelectorAll("h2.extension-title");
var myExtensions = new Array()
for (i = 0; i < titles.length; i++) {
myExtensions.push(titles[i].innerHTML)
}
myExtensions
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment