Release v5.1.4

This commit is contained in:
2026-04-02 18:07:09 -04:00
parent fb25c56230
commit b3707c0803
16 changed files with 1955 additions and 380 deletions
+16
View File
@@ -0,0 +1,16 @@
/* Runs via chrome.tabs.executeScript(allFrames) in the same isolated world as inject.js */
(function () {
try {
if (typeof getPrimaryVideoElement !== "function") {
return null;
}
var v = getPrimaryVideoElement();
if (!v) return null;
return {
speed: v.playbackRate,
preferred: !v.paused
};
} catch (e) {
return null;
}
})();