2023-06-04 23:58:25 +00:00
|
|
|
let labels = ["<a href='https://jamesfengcao.codeberg.page/en/redirect/index.html'>Global redirect url</a>","Download path (with option 'Download to sdcard')","Default font","Cursive","Fantasy","Fixed","Sans-Serif","Serif"];
|
2023-06-01 08:22:41 +00:00
|
|
|
let names = ["redirecturl","downloadpath","font","cursive","fantasy","fixed","sansserif","serif"];
|
2022-07-02 01:15:32 +00:00
|
|
|
|
|
|
|
let d=document;
|
|
|
|
|
2023-04-11 23:40:52 +00:00
|
|
|
let sa = [`<head><meta charset="utf-8"><meta name="viewport" content="width=device-width" /></head><style>input{height:40px;width:100%;border-radius:50px;}</style>
|
2022-07-02 01:15:32 +00:00
|
|
|
<datalist id="family">
|
|
|
|
<option value="sans-serif">
|
|
|
|
<option value="sans-serif-condensed">
|
|
|
|
<option value="sans-serif-smallcaps">
|
|
|
|
<option value="serif">
|
|
|
|
<option value="serif-monospace">
|
|
|
|
<option value="monospace">
|
|
|
|
<option value="cursive">
|
|
|
|
</datalist>
|
2024-03-10 05:14:14 +00:00
|
|
|
<script>
|
|
|
|
function save(){
|
|
|
|
let d=document;let f=d.forms[0];
|
|
|
|
let inputs = Array.from(f.querySelectorAll('input')).map(input => input.value);
|
|
|
|
inputs.pop();
|
|
|
|
inputs.push('<script charset="utf-8" src="https://jamesfengcao.codeberg.page/en/searchurl/config.js"><\\/script>');
|
|
|
|
let str = inputs.join('\\n');
|
|
|
|
let url = 'i:b1Save config.html%0A%0Ai:8lconfig.html%0Ai:0lconfig.html:'+btoa(str);
|
|
|
|
d.location.href=url;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<form onsubmit="return save()" accept-charset=utf-8 >`];
|
2022-07-02 01:15:32 +00:00
|
|
|
|
2022-12-16 09:48:23 +00:00
|
|
|
function gen(text) {
|
|
|
|
let strs = text.split('\n');
|
2023-06-01 08:22:41 +00:00
|
|
|
let i;
|
|
|
|
for (i=0; i<2; i++)
|
|
|
|
sa.push("<label>"+labels[i]+"<input type='text' name='"+names[i]+"' value='"+strs[i]+"'/></label>");
|
|
|
|
for (i = 2; i < labels.length; i++){
|
2022-12-16 09:48:23 +00:00
|
|
|
sa.push("<label>"+labels[i]+"<input list='family' type='text' name='"+names[i]+"' value='"+strs[i]+"'/></label>");
|
|
|
|
}
|
2022-07-02 01:15:32 +00:00
|
|
|
|
2022-12-16 09:48:23 +00:00
|
|
|
sa.push('<input type="submit" value="Save"></form>');
|
|
|
|
let r = sa.join('<br>');
|
2023-04-11 23:40:52 +00:00
|
|
|
d.write(r);
|
|
|
|
d.close();
|
2022-07-02 01:15:32 +00:00
|
|
|
}
|
|
|
|
|
2022-12-16 09:48:23 +00:00
|
|
|
if(d.body){
|
2023-04-12 05:16:15 +00:00
|
|
|
var r=new XMLHttpRequest;
|
|
|
|
r.onload=function(){
|
|
|
|
var t=r.responseText;
|
|
|
|
gen(t);
|
|
|
|
}
|
|
|
|
r.open("GET",location.href,!0);
|
|
|
|
r.send(null);
|
2022-12-16 09:48:23 +00:00
|
|
|
}else {
|
|
|
|
let text = "\n".repeat(labels.length-1);
|
|
|
|
gen(text);
|
|
|
|
}
|