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.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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);
      }
    }
  });
})();