Skip to content

Instantly share code, notes, and snippets.

// Copy & paste this is code in Javascript Console when logged into Search Ads
// When executed you'll get phrase and numeral search popularity for each keyword
// Example: https://www.dropbox.com/s/iuuk8uipwnpvnn6/searchads.png?dl=0
$('td.iad-keyword').each(function(idx, value) {
var keyword = value.innerHTML;
var searchVolume = value.nextSibling.childNodes[0].childNodes[0].childNodes[0].innerHTML;
console.log(keyword + ' : ' + searchVolume.replace(' Complete', ''));
});