Methods to look for when checking if a javascript program is making network requests

I’m trying to quickly audit a js browser extension to see if it doesn’t talk to the outside. Am I right in thinking that I can just grep the code for the following:

XMLHttpRequest
fetch
$.ajax
axios.get
WebSocket

I’m assuming un-obfuscat… Continue reading Methods to look for when checking if a javascript program is making network requests