// 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', '')); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment