Stop video preview on Youtube before it goes to history record.
- // ==UserScript==
- // @name Youtube remove preview from history
- // @namespace Youtube
- // @version 0.1
- // @description Stop video preview on Youtube before it goes to history record.
- // @author NightLancerX
- // @match https://www.youtube.com/*
- // @icon https://www.google.com/s2/favicons?domain=youtube.com
- // @license MIT
- // @grant none
- // @run-at document-end
- // @noframes
- // ==/UserScript==
- (function() {
- 'use strict';
- var previewPauseInterval = setInterval(function(){
- if (document.querySelector('#inline-preview-player video')?.currentTime > 9){
- document.querySelector('#inline-preview-player video').pause();
- }
- }, 450);
- })();