Created
February 22, 2016 19:12
-
-
Save mmlin/2301d51b261e0ff43366 to your computer and use it in GitHub Desktop.
On the keywords page of an Amazon PPC campaign, match all bids – or go to the next page if all bids are already matched.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.body.style.background = '#fff'; | |
var links = $('a:contains("match bid")'); | |
if (links.length) { | |
links.click(); | |
} else { | |
var next = $('.a-last a'); | |
if (next.length) { | |
next.click(); | |
} else { | |
document.body.style.background = '#fee' | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment