Developer utilities for building Google Apps Script automation and GridBee-powered Workspace tools.
- Download Apps Script projects
- Export scripts to Google Drive
- Backup and version utilities
- Tools for building GridBee products
GBDev.scripts.download(scriptId);
GBDev.scripts.exportToDrive(scriptId);Add the library to your Apps Script project.
function test() { const data = GBDev.scripts.download(ScriptApp.getScriptId()); Logger.log(data); }