Extract relevant information for a Chrome extension – Javascript
I am trying to build a chrome extension that aggregates information from a bunch of sites when the user visits a site A async function fetchHTML(url) { const response = await fetch(proxyUrl + url); const html = await response.text(); console.log(html);…