NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Youtube Sempre Rodando // @description Remove a mensagem "Continue assistindo" no YouTube e mantenha os vídeos reproduzindo // @namespace CowanNEVERSTOP // @license MIT // @version 1.0 // @author Cowanbas // @match *://*/* // @run-at document-start // @downloadURL https://update.greasyfork.org/scripts/524577/Youtube%20Sempre%20Rodando.user.js // @updateURL https://update.greasyfork.org/scripts/524577/Youtube%20Sempre%20Rodando.meta.js // ==/UserScript== (function () { 'use strict'; // Função para remover a mensagem "Continue assistindo" function removeContinueWatching() { const continueButton = document.querySelector('button.ytp-continue-playback-button'); if (continueButton) { continueButton.click(); } } // Define um intervalo para verificar a existência da mensagem a cada segundo setInterval(removeContinueWatching, 1000); })();