Greasy Fork is available in English.
This script disable the auto pausing of youtube videos if you don't interact with the screen for a certain amount of time. So, this disable the functionnality "Video paused. Continue watching?" on youtube.
当前为
// ==UserScript==
// @name Yes i'm here, youtube !
// @namespace momala
// @description This script disable the auto pausing of youtube videos if you don't interact with the screen for a certain amount of time. So, this disable the functionnality "Video paused. Continue watching?" on youtube.
// @include https://youtube.com/*
// @include https://*.youtube.com/*
// @version 1
// @run-at document-end
// @noframes
// ==/UserScript==
setTimeout(function() {
document.querySelector('ytd-watch-flexy').youthereDataChanged_ = function() {};
}, 10000);