Greasy Fork is available in English.

Close tab/window on end

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();
        }
    });
})();