Fast-forward for YT shorts & TikTok

This Userscript adds keyboard shortcuts to YouTube and TikTok videos. It enables quick navigation using the "Left Arrow" key for rewind and the "Right Arrow" key for fast-forwarding in short videos. This feature saves time and helps locate specific moments in a video, making video-watching more efficient.

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Fast-forward for YT shorts & TikTok
// @namespace    http://tampermonkey.net/
// @license MIT
// @version      0.1.1
// @description  This Userscript adds keyboard shortcuts to YouTube and TikTok videos. It enables quick navigation using the "Left Arrow" key for rewind and the "Right Arrow" key for fast-forwarding in short videos. This feature saves time and helps locate specific moments in a video, making video-watching more efficient.
// @author       crazy-cat-108
// @match https://www.youtube.com/*
// @match https://www.tiktok.com/*
// @run-at document-start
// @icon         https://cdn-icons-png.flaticon.com/512/7696/7696578.png
// @grant        none
// ==/UserScript==

(function () {
  'use strict';
  document.addEventListener('keydown', function (event) {
    if (location.pathname.includes('/shorts') || location.host.includes('tiktok.com')) {
      const video = document.querySelector("video[loop]") || document.querySelector("video");
      if (event.code === 'ArrowLeft') {
        video.currentTime -= Math.floor(video.duration * 0.10);
      } else if (event.code === 'ArrowRight') {
        // Right arrow was pressed
        video.currentTime += Math.floor(video.duration * 0.10);
      }
    }
  });
})();