Skip to content

Instantly share code, notes, and snippets.

@ndthanh
Created December 10, 2018 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ndthanh/ecda844dde49c2507a82a26d2f764b67 to your computer and use it in GitHub Desktop.
Save ndthanh/ecda844dde49c2507a82a26d2f764b67 to your computer and use it in GitHub Desktop.
//7. remove all Sheets tabs color
function resetTabColor() {
var sheets = SpreadsheetApp.getActiveSpreadsheet().getSheets();
sheets.forEach(function(sheet) {
sheet.setTabColor(null);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment