I have created a standalone Apps Script from Google Drive, but when I try to access it from a Google Spreadsheet, I don\'t see a way to access the script (even though when I
I worked this out with Jordan, following the instructions here:
https://developers.google.com/apps-script/guide_libraries
Sample code once the library is imported and the library manager gives you an identifier for the library:
function onOpen() {
GivenLibraryIdentifier.onOpen();
}