diff options
feat: da extension
Diffstat (limited to 'static/proxy.html')
-rw-r--r-- | static/proxy.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/static/proxy.html b/static/proxy.html new file mode 100644 index 0000000..6464215 --- /dev/null +++ b/static/proxy.html @@ -0,0 +1,30 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <meta + name="viewport" + content="width=device-width, initial-scale=1.0" + /> + <title>Document</title> + <style> + html { + background: var(--bg, #23222b); + color: var(--fg, #dedede); + font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', + Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', + sans-serif; + } + iframe { + border: 0px none #0000; + width: 100vw; + height: 100vh; + position: fixed; + top: 0; + left: 0; + } + </style> + <script src="/proxy.js"></script> + </head> + <body></body> +</html> |