I'm trying to build a rather unique google sheets addon. Google's documentation is great for adding custom functions, however I want my addon to programmatically add custom functions.
For instance, the following doesn't seem to be possible:
- Assume there's a
getScript()custom function where if you dogetScript("scraper"), this custom function will do an HTTP call and install a new functionscraper()in your google sheet. - Then you can do
scraper("https://www.google.com")to get all the text from "google.com".
I know it's possible to define scraper() ahead of time.
Is it possible to do so live?