firefox commandline code for auto-saving webpages
Posted: 06 Jan 2014 20:28
hi to all experts,
can you give me a firefox addson to autosave webpage everytime i visit their site and everytime i visit their other pages using desktop firefox v26? i only found saving site-link but not webpage?
but i google firefox has it own commandline to use commandprompt.
and i cant understand their syntax really has it own code to autosave webpage everytime i visit website?
are firefox has command to save webpage like wget?
neither wget nor a site-grabber apps allowed to my affordable data-plan (if allowed then data plan will be auto-blocked by network operator) and rendered simcard useless for internet.
i had batch script to open site:
but saving site (including saving destination directory) i dont know, maybe like this:
if you give me firefox code to save webpages (and saved destination) then this code will be created:
im lazy to google all firefox commandline syntax due to limited data-surf.
thanks,
bars
can you give me a firefox addson to autosave webpage everytime i visit their site and everytime i visit their other pages using desktop firefox v26? i only found saving site-link but not webpage?
but i google firefox has it own commandline to use commandprompt.
and i cant understand their syntax really has it own code to autosave webpage everytime i visit website?
are firefox has command to save webpage like wget?
neither wget nor a site-grabber apps allowed to my affordable data-plan (if allowed then data plan will be auto-blocked by network operator) and rendered simcard useless for internet.
i had batch script to open site:
Code: Select all
firefox.exe www.dostips.com
but saving site (including saving destination directory) i dont know, maybe like this:
Code: Select all
firefox.exe <code_for_saving_site?> www.dostips.com <saved_webpage_destination>
if you give me firefox code to save webpages (and saved destination) then this code will be created:
Code: Select all
@echo off &setlocal enabledelayedexpansion
for /f "delims" %%a in (list_of_URL_address.txt) do (
set "URL=%%a"
firefox.exe <code_for_saving_site?> "!URL!" "c:\users\bars\saved_webpage"
)
im lazy to google all firefox commandline syntax due to limited data-surf.
thanks,
bars