2021-08-08 19:49:22 +00:00
<!DOCTYPE html>
< html >
< head >
< meta charset = "utf-8" >
2021-09-21 04:47:40 +00:00
< link rel = "stylesheet" href = "options.css" >
2021-08-08 19:49:22 +00:00
< / head >
< body >
< form >
2021-10-12 07:34:19 +00:00
< input type = "checkbox" id = "usePrompt" >
2021-10-12 18:36:09 +00:00
< label for = "usePrompt" > Use prompt() dialogs on single-line inputs. Faster typing and less CPU usage, but can break some websites and features like autocomplete.< / label >
2021-10-12 07:34:19 +00:00
< br >
2022-05-09 22:17:31 +00:00
< input type = "checkbox" id = "useUnicode" >
< label for = "useUnicode" > Convert english to unicode (will break a lot)< / label >
< br >
2021-09-21 04:47:40 +00:00
< input type = "checkbox" id = "whitelistLAN" >
< label for = "whitelistLAN" > Whitelist private IP + localhost range hostnames (e.g. routers)< / label >
< h1 > Trusted domains (comma delimited)< / h1 >
2021-08-08 19:49:22 +00:00
< textarea id = "whitelist" cols = 50 rows = 10 > < / textarea >
< br > < br >
< button type = "submit" > Save< / button >
< / form >
< script src = "options.js" > < / script >
2021-09-21 04:47:40 +00:00
< div id = "saved" > < br > < / div >
2021-08-08 19:49:22 +00:00
< / body >
< / html >