问题
Since Apps Script runs in Chrome V8 engine, would it be possible to use any of V8 functionalities from Apps Script?
I was wondering if it will be possible to build tools like headless browser, webpage screenshot, etc using Apps Script. I haven't read on these though, but would if it would be possible.
Thanks
回答1:
V8 is an ECMAScript engine, which is just one part of a browser. It doesn't know anything about the DOM, or CSS, or rendering, etc. So no, you can't use it to render screenshots of websites.
来源:https://stackoverflow.com/questions/62534320/can-we-use-chrome-v8-functionalities-from-gas