From 5d7aa0caa66af6e9c4878b6234584ee7b9228f15 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sat, 31 Jan 2026 15:41:02 +0000 Subject: [PATCH] Clarify 'previous' command logic in ContentScript.js Removed the '// Unknown' comment in the `previous()` function and replaced it with a comment explaining that `currentTime = 0` restarts the media ("Go to start of media"). This aligns with the description of the 'previous' command in both `manifest-chrome.json` and `manifest-firefox.json`. Co-authored-by: NDevTK <31563761+NDevTK@users.noreply.github.com> --- ContentScript.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ContentScript.js b/ContentScript.js index 3d7c359..40a704e 100644 --- a/ContentScript.js +++ b/ContentScript.js @@ -85,7 +85,7 @@ function next() { function previous() { Elements.forEach((data, e) => { if (isPaused(e)) return; - // Unknown + // Go to start of media e.currentTime = 0; }); }