Skip to content

Instantly share code, notes, and snippets.

@pedromenezes
Last active January 4, 2018 18:36
Show Gist options
  • Save pedromenezes/dbefe4ee0fece754ada77e93ffd967e0 to your computer and use it in GitHub Desktop.
Save pedromenezes/dbefe4ee0fece754ada77e93ffd967e0 to your computer and use it in GitHub Desktop.
function dolarHojeExtract(url, reference){
return UrlFetchApp.fetch(url.replace(/([^\/]+)$/, '$1/') + "cotacao.txt").getContentText();
}
function refresh() {
SpreadsheetApp.getActiveSheet().getActiveCell().setValue("Última atualização: " + new Date().toLocaleString());
}
function onOpen(e) {
SpreadsheetApp.getUi().createMenu('Dólar Hoje').addItem('Atualizar', 'refresh').addToUi();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment