Stuart McMurray:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#content { | |
visibility: hidden; | |
} | |
div:has(#publicchat) { | |
visibility: visible; | |
grid-column-start: 1!important; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* === Configuration === */ | |
// The sheet to work with | |
const SHEET = SpreadsheetApp | |
.openById("FILE ID") | |
.getSheetByName("SHEET NAME"); | |
// Create list of headings | |
const COLUMNS = SHEET.getRange(1, 1, 1, SHEET.getLastColumn()).getValues()[0].map(v => v.toString().toLowerCase()); |