Close tab/windows when video ends (if autoplay is not enabled)
// ==UserScript==
// @name Close tab/window on end
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Close tab/windows when video ends (if autoplay is not enabled)
// @author Alexander Foo <@alexfoo>
// @match https://*.youtube.com/w*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.getElementsByTagName('video')[0].addEventListener('ended', function() {
if (document.getElementById('autoplay-checkbox').checked === false) {
window.close();
}
});
})();