0

I'm working on a project that is some kind of a web crawler extension for chrome to create a personal local web archive. So I am getting videos, images, css-files and script-files with javascript. The outlines of the project tell me to consider .war-files for saving the crawled pages, but I could not find a way to create .war files out of the extension itself.

Is that even possible or do I have to find another way to save the acquired resources?

1 Answers1

0

Why WAR, of all things? That task is unlikely to be anywhere near easy, as it is Java-specific. Perhaps you need a reminder that Java and JavaScript are about as similar as Car and Carpet.

Consider using Chrome API for building MHTML archives, chrome.pageCapture.

Community
  • 1
  • 1
Xan
  • 74,770
  • 16
  • 179
  • 206