diff --git a/settings.py b/settings.py
index 118b13d..3fd96ac 100644
--- a/settings.py
+++ b/settings.py
@@ -261,6 +261,17 @@ For security reasons, enabling this is not recommended.''',
'category': 'interface',
}),
+ ('native_player_storyboard', {
+ 'type': bool,
+ 'default': False,
+ 'label': 'Storyboard preview (native)',
+ 'comment': '''Show thumbnail preview on hover (native player modes).
+ Positioning is heuristic; may misalign in Firefox/Safari.
+ Works best on Chromium browsers.
+ No effect in Plyr.''',
+ 'category': 'interface',
+ }),
+
('use_video_download', {
'type': int,
'default': 0,
diff --git a/youtube/templates/embed.html b/youtube/templates/embed.html
index f9177fe..b1ad63f 100644
--- a/youtube/templates/embed.html
+++ b/youtube/templates/embed.html
@@ -105,5 +105,10 @@
{% if use_dash %}
{% endif %}
+
+
+ {% if settings.use_video_player != 2 and settings.native_player_storyboard %}
+
+ {% endif %}