Skip to content

Instantly share code, notes, and snippets.

@michaelmartinezcampos
michaelmartinezcampos / ExtractSpecificTextFromEmail.txt
Last active November 17, 2020 00:19 — forked from moayadhani/ExtractSpecificTextFromEmail.txt
Extract Email Text from Google Sheet using App Script
var ui = SpreadsheetApp.getUi();
function onOpen(e){
ui.createMenu("Gmail Manager").addItem("Get Emails by Label", "getGmailEmails").addToUi();
}
function getGmailEmails(){
var input = ui.prompt('Label Name', 'Enter the label name that is assigned to your emails:', Browser.Buttons.OK_CANCEL);
if (input.getSelectedButton() == ui.Button.CANCEL){
return;
@michaelmartinezcampos
michaelmartinezcampos / Website 12 Column Overlay Bookmarklet
Last active April 4, 2019 16:28 — forked from hagenburger/show-grid.js
A Grid Overlay for Any Website
/*
* A Grid Overlay for Any Website
* ------------------------------
*
* Open your browser console, paste in this code and you’re done.
* (Works at least for Safari, Firefox, Chrome and Internet Explorer 8.0)
*
* Adjust variables to your need. The example shows a 960.gs grid with 12 columns à 60px:
*/