Skip to content

Instantly share code, notes, and snippets.

/*************************************************
* Google Ads Budgets By Day Of The Week
* @version: 1.0
* @author: Andrea Atzori (Ambire)
* https://ambire.com.au/
***************************************************
* YOU MUST CREATE A COPY OF THE GOOGLE SHEET: https://docs.google.com/spreadsheets/d/1VuyiTmBiutnxqCxXOur5brW1_WGFtJxsteNQ-OMK04k/copy
***************************************************
*/
@siliconvallaeys
siliconvallaeys / ETA vs RSA Query Report
Last active April 14, 2023 09:42
Compare performance of RSAs vs ETAs at the query level in an ad group to help decide which ad format is driving the best results
/******************************************
* ETA vs RSA Test
* @version: 1.0
* @author: Naman Jindal (Optmyzr)
* March 2, 2020
*******************************************/
var LOOKBACK_DAYS = 30; // Number of Days to look back for stats
var EMAILS = ['example@example.com']; // Array of Emails separated by comma
var CAMPAIGN_NAME_CONTAINS = ''; // Case Insensitive
@postman31
postman31 / Dissaproved Extensions Report.js
Last active February 11, 2022 04:30
Dissaproved Extensions Report Script
/*
Disapproved Extensions Report Script.
This scripts generates an email if there are some non-removed disapproved extensions.
Disapproval reasons are taken from PLACEHOLDER_FEED_ITEM_REPORT.
Check the nameMapping veriable below for the list of supported extensions.
Email message could also include a long list of dissaproved remarketing feed items, so adjust settings to skip this if necessary.
Developed by Dmytro Bulakh, 2020, bulakh@ppchead.com
*/
@willwangcc
willwangcc / colored_tags.css
Last active October 3, 2019 17:34
Stylish colored tags for workflowy
/*
- CHANGE UP THE TITLE (TAG NAME) & BACKGROUND COLOR
- FOR DIFFERENT COLORS:
(1) You can use the 147 CSS colors: http://www.colors.commutercreative.com/grid/
(2) ... or you can use hexidecimal color codes: http://html-color-codes.info/
https://gist.github.com/willwang-x/07eb654ff01f92d705ce9ef06356f69f
*/
[title~="@meeting"] {
@davestewart
davestewart / workflowy x 2.js
Last active February 20, 2024 16:25
WorkFlowy x 2 - a browser bookmarklet to give you a dual panel WorkFlowy view
javascript:
`
WorkFlowy x 2
=============
- A browser Bookmarklet to give you a dual panel WorkFlowy view
Features / Usage:
@thalesmg
thalesmg / remove_google_search_ads.user.js
Created November 11, 2018 13:50
Remove ads from google search
// ==UserScript==
// @name Remove ads from google search
// @namespace https://userscripts-mirror.org/users/529924
// @include *://*google.com*/search?*
// @include *://*google.com*/#fp=*
// @include *://*google.com*/webhp?tab=*
// @include *://*google.com*/?gws_rd*
// @include *://*google.com*/#newwindow*
// @grant none
// @author Thales M. G.
// ==UserScript==
// @name Restore title to workflowy tags
// @namespace Violentmonkey Scripts
// @match https://workflowy.com/*/*
// @grant none
// ==/UserScript==
let timer = void 0
const update_tags = () => {
@BrainlabsDigital
BrainlabsDigital / Domain Name Checker.js
Created April 3, 2018 09:44
Script to find if any ads or keywords have landing pages with the wrong domain.
/**
*
* 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
@BrainlabsDigital
BrainlabsDigital / Campaign Budget Overspend Monitoring
Last active October 29, 2022 12:13
Labels (and optionally pauses) campaigns that are overspending too much, and emails you a warning.
/**
*
* 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.
@takasek
takasek / DeskFlowy_Markdown化.js
Last active October 14, 2017 05:32
WorkFlowyのトピックをMarkdown化するDeskFlowy( http://nap.jp/michi/DeskFlowy/ja/ )用スクリプト。1段目は ##、2段目は###、3段目は本文、4段目以降はリストとして扱います。
(function() {
var lastIndents = null;
var lastNode = null;
var lastParsedLine = null;
function stringify(node, indents) {
const text = node.children(".name").children(".content").text();
var lines = [];