I have encountered scripts that are:
- an inline java-script code
- appended to the url
These scripts manipulate the web-page and the one I have encountered save the whole twitter archive as a .csv-file.
What is the name of this type of scripts?
Is it possible to write such script to refresh a web-page constrantly by an interval of time?
Not sure what you mean, but Scripts in a URL is most likely Cross-Site-Scripting (XXS)
Reloading a page can be done with window.setTimeout(“window.location.reload();”, 1000) or window.setInterval(“window.location.reload();”, 1000)