Skip to content

Instantly share code, notes, and snippets.

@timelf123
timelf123 / Google Analytics Dashboards
Created December 10, 2015 01:06 — forked from underdown/Google Analytics Dashboards
Google Analytics Dashboards
Google Analytics Dashboards
Local Search Dashboard https://www.google.com/analytics/web/template?uid=gNhA6alsRsy9rFxKJSz2Ng http://localu.org/blog/how-to-segment-local-search-analytics/
https://econsultancy.com/blog/62828-10-useful-google-analytics-custom-dashboards/
@timelf123
timelf123 / elite-404-checker
Created December 10, 2015 01:17 — forked from derekmartinla/elite-404-checker
Elite Adwords Destination Url 404 Checker
var email_address = 'derek@wpromote.com';
function main() {
var urlList = runUrlReport();
urlList = _.uniq(urlList, function(item, key, url) {
return item.url;
});
var listOfBrokenUrls = [];
@timelf123
timelf123 / amazon-autocomplete
Created December 10, 2015 01:18 — forked from derekmartinla/amazon-autocomplete
Leverage Amazon To Find High Commercial Intent Keywords
/**********************************************************************************************************************
* Amazon Autocomplete Tool
* Leverage the Amazon Autocomplete feature to find highly commercial keyword opportunities.
* Export the results for efficient importing into Google Adwords
* Version 1.0
* Created By: Derek Martin
* DerekMartinLA.com or MixedMarketingArtist.com
**********************************************************************************************************************/
var hashMapResults = {};
@timelf123
timelf123 / account-quality-score-analyzer
Created December 10, 2015 01:18 — forked from derekmartinla/account-quality-score-analyzer
Google Adwords Quality Score Performance Analyzer
/**************************************************************************************
* AdWords Optimization -- Quality Score Performance Checker
* This script audits an account's quality score performance and creates a table that shows the
* distribution of CTR, Cost, & Conversins against Quality Score.
* Version 1.0
* Created By: Derek Martin
* DerekMartinLA.com
**************************************************************************************/
function main() {
/***********************************************************************************************
* AdWords Account Optimization - Review Google Display Network Site Placement Quality.
* Analyze Display Network Placements that have accrued more than $20 of cost MTD against
* Standard SEO metrics (PageAuthority, DomainAuthority, # of Backlinks, Age of Site) and report back
* Any questionable placements that are strong targets for exclusion.
* Created By: Derek Martin
* DerekMartinLA.com
****************************************************************************************/
// CONSTANTS
@timelf123
timelf123 / check-for-disapproved-ads
Created December 10, 2015 01:18 — forked from derekmartinla/check-for-disapproved-ads
Use Twilio & Google Docs To Check For Disapproved Ads
/***************************************************************************************
* AdWords Account Audit -- Check Ads for disapprovals -- text if there are open issues
* Version 1.0
* Created By: Derek Martin
* DerekMartinLA.com
****************************************************************************************/
// This script was heavily inspired by Russell Savage so all credit where its due!
// Sign up at Twilio.com and get an API key (sid) and Auth code and place here
// Url: https://www.twilio.com/
@timelf123
timelf123 / twitter-auto-unfollow.js
Created December 10, 2015 01:18 — forked from underdown/twitter-auto-unfollow.js
twitter auto unfollow
/*
Just nacigate to twitter.com/following (while logged in), hit f12 (on chrome) and paste this snippet into the console tab
originally found here: http://www.easytins.com/2014/01/how-to-unfollow-many-twitter-users.html
*/
setInterval(function(){t=
$(".following button:eq
(0)");if(!t
@timelf123
timelf123 / google-autocomplete
Created December 10, 2015 01:19 — forked from derekmartinla/google-autocomplete
AdWords Script That Leverges Google Autocomplete
/**********************************************************************************************************************
* Brand Keyword Analysis Google
* Leverages the Google Autocomplete feature to find potential keyword opportunities and negative keywowrds
* Version 1.0
* Created By: Derek Martin
* DerekMartinLA.com or MixedMarketingArtist.com
**********************************************************************************************************************/
var hashMapResults = {};
var numOfKeywords = 0;
@timelf123
timelf123 / gdn-placement-analysis
Created December 10, 2015 01:19 — forked from derekmartinla/gdn-placement-analysis
Find Underperforming Placements & Opportunities On Google Display Network
// This script reviews your GDN placements for the following conditions:
// 1) Placements that are converting at less than $40
// 2) Placements that have cost more than $50 but haven't converted
// 3) Placements that have more than 5K impressions and less than .10 CTR
function main() {
var body = "<h2>Google Display Network Alert</h2>";
body += "<h3>Placements that are converting at less than $40:</h3> " ;
body += "<ul>";
@timelf123
timelf123 / gist:a61a1088830fcbb2b431
Created December 10, 2015 01:19 — forked from derekmartinla/gist:46bbbcd2e800111fd46f
Copy Existing AdWords Ads With A New Destination URL
function main() {
// change the CampaignName condition to whatever suits you
var adIter = AdWordsApp.ads().withCondition("CampaignName contains WP").withCondition("Status = ENABLED").get();
while(adIter.hasNext()) {
var ad = adIter.next();
var headline = ad.getHeadline();
var d1 = ad.getDescription1()
var d2 = ad.getDescription2();