Skip to content

Instantly share code, notes, and snippets.

View AhmedKamal20's full-sized avatar
🐧
Linuxing

Ahmed Kamal AhmedKamal20

🐧
Linuxing
View GitHub Profile
@AhmedKamal20
AhmedKamal20 / extract.js
Last active June 11, 2016 12:04
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