Das Kleingedruckte lesbar machen
![]() meta=document.createElement('meta'); meta.name='viewport';meta.content='width=768'; document.getElementsByTagName('head')[0].appendChild(meta); if(window.onorientationchange)window.onorientationchange(); Alternativ mit Eingabe der Breite ![]() width=prompt('viewport-width','540');if(width){ meta=document.createElement('meta'); meta.name='viewport';meta.content='width='+width; document.getElementsByTagName('head')[0].appendChild(meta); if(window.onorientationchange)window.onorientationchange();} Beschreibung der Seite anzuzeigen ![]() elements=document.getElementsByTagName('meta'); for(i=0;i<elements.length;i++) if(elements[i].name=='description') alert(elements[i].content); Rahmen einblenden ![]() elements=document.getElementsByTagName('*'); for(i=0;i<elements.length;i++)elements[i].border=1; Zertifikat prüfen ![]() location.href='https:'+ '//www'+'.digicert.com/help/?host='+ encodeURIComponent(location.hostname); Zertifikat prüfen 2 ![]() location.href='https:'+ //www'+'.sslshopper.com/ssl-checker.html?hostname='+ encodeURIComponent(location.hostname); Zertifikat prüfen 3 ![]() location.href='https:'+ '//www'+'.ssllabs.com/ssltest/analyze.html?d='+ encodeURIComponent(location.hostname); HTML-Validator ![]() location.href='http:'+ '//validator.w3.org/check?ss=1&No200=1&group=1&uri='+ encodeURIComponent(location.href); HEAD-Service ![]() location.href='http:'+ '//www'+'.delorie.com/web/headers.cgi?url='+ encodeURIComponent(location.href); Google-Cache ![]() location.href='http:'+ '//www'+'.google.de/search?q=cache:'+ encodeURIComponent(location.href); Internet-Archiv ![]() location.href='http:'+ '//web'+'.archive.org/web/*/'+location.href; Fenstertitel auswählen ![]() prompt('',document.title) JavaScript ![]() eval(prompt('javascript:','')) |