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
/** | |
* | |
* Associated Search Analysis | |
* | |
* This script takes in a list of pieces of text, and finds the words and | |
* phrases that appear in the same search queries as that text. The found | |
* phrases and the performance of the queries they appear in are then reported | |
* in a Google Doc spreadsheet. | |
* | |
* Version: 1.0 |
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
/** | |
* | |
* Campaign Budget Overspend Monitoring | |
* | |
* This script labels campaigns whose spend today is more than their daily | |
* budgets. Optionally, it also pauses campaigns whose spend exceeds the | |
* budget by too much. An email is then sent, listing the newly labelled | |
* and paused campaigns. | |
* When spend no longer exceeds budget, the campaigns are reactivated and | |
* labels are removed. |
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
/** | |
* Copying Labels From Keywords To Ads Or Vice-Versa | |
* | |
* If a certain percentage of keywords (or ads) are labelled with a particular | |
* label within an ad group, the script applies the label to all ads (or | |
* keywords) in that ad group. | |
* | |
* Version: 1.0 | |
* Google AdWords Script maintained on brainlabsdigital.com | |
*/ |
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
/** | |
* | |
* Domain Name Checker | |
* | |
* This script will scan through your keyword and ad URLs, checking the domain | |
* names for anything out of place, and output any discrepancies it finds into a | |
* Google Sheet. | |
* | |
* Version: 1.0 | |
* Google AdWords Script maintained on brainlabsdigital.com |
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
/** | |
* | |
* Pause Losing Ads & Ad Rotate Analysis | |
* | |
* This script finds the best ad in each ad group (subject to thresholds) and | |
* calculates the performance you could have got if the impressions that went to | |
* losing ads went to the winning ads instead. | |
* Labels the winning and losing ads, and (optionally) pauses the losers. | |
* | |
* Version: 2.0 |
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
/** | |
* | |
* Low Quality Score Alert | |
* | |
* This script finds the low QS keywords (determined by a user defined threshold) | |
* and sends an email listing them. Optionally it also labels and/or pauses the | |
* keywords. | |
* | |
* Version: 1.0 | |
* Google AdWords Script maintained on brainlabsdigital.com |
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
/** | |
* | |
* Expanding Phrase Match Negatives | |
* | |
* This script searches for all occurrences of phrase match negatives in search | |
* queries resulting from typos. Outputs a report to a Google Doc spreadsheet. | |
* | |
* Version: 1.0 | |
* Google AdWords Script maintained on brainlabsdigital.com | |
* |
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
/** | |
* | |
* Change in Campaign Spending Alert | |
* | |
* This script uses the current hour to calculate how much has been spent on | |
* individual campaigns on the day of running. The average spend up to the | |
* current hour in a specified numbers of days previously is averaged. If the | |
* spend today is higher by a specified percentage threshold an alert email | |
* is sent. | |
* |
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
/** | |
* | |
* Account Structure Checker | |
* | |
* This script will check your account for any missing keyword match types | |
* are output a report with the missing keywords | |
* | |
* Version: 1.0 | |
* Google AdWords Script maintained on brainlabsdigital.com | |
* |
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
/** | |
* | |
* Make Exact Match Exact | |
* | |
* Adds negatives for any search query that doesn't actually exactly match an exact | |
* match keyword. | |
* | |
* Version: 2.0 | |
* Google AdWords Script maintained on brainlabsdigital.com | |
* |