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
<script id="gtm-jq-ajax-listen" type="text/javascript"> | |
(function() { | |
'use strict'; | |
var $; | |
var n = 0; | |
init(); | |
function init(n) { | |
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
//This script will send you four simple charts per account. | |
//Clicks, Cost, Conversions, CostPerConversion for the past 28 days. | |
//or | |
//Clicks, Cost, AllConversions, CostPerAllConversion for the past 28 days. | |
//Enter your email address where you want the emails to be sent: | |
var EMAIL_ADDRESS_TO_NOTIFY = "[email protected]"; | |
//Enter the label for all the accounts you wish to analyze | |
var ACCOUNT_LABEL_TO_CHECK = "Monitor"; |
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, Campaign, and Ad Group Level Quality Score | |
// ------------------------------------------------- | |
// Script created by Frederick Vallaeys | |
// Optmyzr - http://www.optmyzr.com http://www.optmyzr.com/enhanced-scripts-for-adwords | |
// Copyright 2012-2016 - Optmyzr Inc. | |
// | |
function main() { |
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
// Generate Expanded Text Ads From Landing Page Meta Data - AdWords Script | |
// | |
// Copyright 2016 - Optmyzr Inc - All Rights Reserved | |
// For more AdWords Scripts and PPC Management Tools and Reports, visit | |
// | |
// https://www.optmyzr.com/ | |
// | |
// Licensed under the Apache License, Version 2.0 (the "License"); | |
// you may not use this file except in compliance with the License. | |
// You may obtain a copy of the License at |
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
// Granular Anomaly Detector Script | |
// | |
// Copyright 2016-2019 - Optmyzr Inc - All Rights Reserved | |
// Visit www.optmyzr.com for more AdWords Scripts and PPC Management Tools and Reports | |
// | |
// Licensed under the Apache License, Version 2.0 (the "License"); | |
// you may not use this file except in compliance with the License. | |
// You may obtain a copy of the License at | |
// | |
// http://www.apache.org/licenses/LICENSE-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
/** | |
* | |
* AdWords Script to check the number of entities in ad groups: reports ad | |
* groups with no ads, no keywords, too few ads or too many keywords. | |
* Optionally reports ad groups with no mobile preferred ads, and ad groups | |
* with broad match keywords but no negative keywords. | |
* | |
* Version: 1.1 | |
* Updated 2017-01-05: changed 'CreativeApprovalStatus' to 'CombinedApprovalStatus' | |
* Google AdWords Script maintained by 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
/** | |
* | |
* Search Query Mining Tool | |
* | |
* This script calculates the contribution of each word or phrase found in the | |
* search query report and outputs a report into a Google Doc spreadsheet. | |
* | |
* Version: 2.2 | |
* Updated 2015-09-17: replacing 'KeywordText' with 'Criteria' | |
* Updated 2016-10-11: replacing 'ConvertedClicks' with 'Conversions' |
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
//var tsv is the TSV file with headers | |
function tsvJSON(tsv){ | |
var lines=tsv.split("\n"); | |
var result = []; | |
var headers=lines[0].split("\t"); | |
for(var i=1;i<lines.length;i++){ |