So the goal is - I have a web page, and I want to embed it in a webview in an android app, but I need this page working offline. So I came to a solution to save the whole page with all files, I tried Save As in Chrome, I've tried about 10 different programs like HTTrack and NColector etc, but the problem is - in an html file there is something like this
<script src="js/blabla.js"></script>
<script>
require(["js/some_config.js"], function(config) {
require(['one_more_js'], function(one_more_js) {
require(['one_more_js_here'], function(app) {
app.init(...
So blabla.js is fine, HTTrack does download this resource, but there are lots of other files (mp3, images, js, etc) that are loading inside of these other scripts, after initialization, and there are links pointing on media resources inside of "one_more_js_here" , so it isn't being downloaded by HTTrack and other programms.
I tried to download every source file manually (it's almost getting me insane), there are too many dependencies, files.. Please, maybe somebody faced this problem before?
(yes, I searched on this site, google, even bing.. I never came here if I wasn't so desperate, thank you for your kindness and brains :))