remove huey

This commit is contained in:
Nick Sweeting
2025-12-24 23:40:18 -08:00
parent 6c769d831c
commit d95f0dc186
105 changed files with 3635 additions and 1402 deletions

View File

@@ -0,0 +1,6 @@
<!-- DOM embed - full iframe of captured DOM HTML -->
<iframe src="{{ output_path }}"
class="extractor-embed dom-embed"
style="width: 100%; height: 100%; min-height: 500px; border: none;"
sandbox="allow-same-origin allow-scripts allow-forms">
</iframe>

View File

@@ -0,0 +1,6 @@
<!-- DOM fullscreen - full page iframe -->
<iframe src="{{ output_path }}"
class="extractor-fullscreen dom-fullscreen"
style="width: 100%; height: 100vh; border: none;"
sandbox="allow-same-origin allow-scripts allow-forms allow-top-navigation-by-user-activation">
</iframe>

View File

@@ -0,0 +1 @@
🌐

View File

@@ -0,0 +1,8 @@
<!-- DOM thumbnail - scaled down iframe preview of captured DOM HTML -->
<div class="extractor-thumbnail dom-thumbnail" style="width: 100%; height: 100px; overflow: hidden; background: #fff;">
<iframe src="{{ output_path }}"
style="width: 400%; height: 400px; transform: scale(0.25); transform-origin: top left; pointer-events: none; border: none;"
loading="lazy"
sandbox="allow-same-origin">
</iframe>
</div>