Skip to content

Instantly share code, notes, and snippets.

@krisix
Last active July 20, 2021 04:53
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save krisix/b368d100fe375bc51e12fa655556c17d to your computer and use it in GitHub Desktop.
Save krisix/b368d100fe375bc51e12fa655556c17d to your computer and use it in GitHub Desktop.
// 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