let labels = ["Global redirect url","Download path (with option 'Download to sdcard')","Default font","Cursive","Fantasy","Fixed","Sans-Serif","Serif"]; let names = ["redirecturl","downloadpath","font","cursive","fantasy","fixed","sansserif","serif"]; let d=document; let sa = [`
`]; function gen(text) { let strs = text.split('\n'); let i; for (i=0; i<2; i++) sa.push(""); for (i = 2; i < labels.length; i++){ sa.push(""); } sa.push('
'); let r = sa.join('
'); d.write(r); d.close(); } if(d.body){ var r=new XMLHttpRequest; r.onload=function(){ var t=r.responseText; gen(t); } r.open("GET",location.href,!0); r.send(null); }else { let text = "\n".repeat(labels.length-1); gen(text); }