I am developing an extension, which should do monitoring of file on the remote server, and if file changes (actually it will be appended by some text) the changed (appended) part of this file will need to be downloaded.
So, here is an example:
First, file contents was "abcd". Extension has already gotten this part. Than somebody adds on server to the file some contents and it will be "abcdefg". Here extension should get this "efg" only, not the whole contents. Is this possible to do with chrome and XMLHttpRequest?
I have made this extension for FireFox and was using XMLHttpRequest.setRequestHeader("Range", "bytes=4-6" (for this particular situation), but doing so in Chrome results in security violation.
Also, is there a way of setting XMLHttpRequest.setRequestHeader("Accept-Encoding", null) in Chrome? I need it for avoidance of packing response to zip format.
String.substring():var res = xhr.responseText.substring(4,6);. – ComFreek Dec 27 '11 at 14:58XMLHttpRequest.setRequestHeader("Range", "...")in an extension which extracts a file from a zip and it works as expected. I think your issue is elsewhere. Can you show us some code ? – check_ca Dec 27 '11 at 15:32