Набросал скрипт от greasemonkey но чего-то не работает
GM_xmlhttpRequest({
method: 'GET',
url: 'http://gismeteo.ru/city/hourly/4368/#wdaily1',
headers: {
'User-agent': navigator.userAgent,
'Accept': 'application/atom+xml,application/xml,text/xml,text/html',
},
onload: function(r) {
if(r.responseText!=-1) {
var response = r.responseText.match(/<div id=\"weather-hourly\"[^>]*>([\s\S]*)<\/div><div id=\"27612\" class=\"hslice\">([\s\S]*)<\/a>(\s)+<\/div>$/ig);
document.getElementById("output").innerHTML = response;
}
else alert('Site unavailable');
}
});