What are the best options for doing open-tab web clips as part of the Google Chrome extension with JavaScript and any other technology. Other JavaScript libraries are also accepted.
It is important that the scraper looks like a regular web request . There are no references to AJAX or XMLHttpRequest, e.g. X-Requested-With: XMLHttpRequest or Origin .
Scraper content should be accessible from JavaScript for further processing and presentation inside the extension, most likely as a string.
Are there any hooks in any WebKit / Chrome: s API that can be used to create a regular web request and get results for manipulation?
var pageContent = getPageContent(url); // TODO: Implement var items = $(pageContent).find('.item'); // Display items with further selections
Bonus points to make this work from a local file on disk for initial debugging. But if this is the only point - to stop the decision, then ignore the bonus points.
Seb Nilsson Jun 28 2018-11-11T00: 00Z
source share