I'd like to know if Google Chrome Extension can make a HTTP request and parse the body of the result (like Curl). For example, there is a server 1.2.3.4 that answers the question ?a=1&b=2
by summarizing the URL parameters. The query "http://1.2.3.4?a=1&b=2"
would return a body containing 3
, and my extension wants to submit such a query and parse the result.
Any help would be appreciated.