hitbox.tv Theatre Mode

Expands the video player to give maximum viewing.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         hitbox.tv Theatre Mode
// @namespace    http://gamingtom.com/
// @version      0.0.6
// @description  Expands the video player to give maximum viewing.
// @author       GamingTom
// @match        *://*.hitbox.tv/*
// @grant        none
// ==/UserScript==
$ = window.jQuery;

$(document).ready(function() {

    function init() {

        state = false;

        $("#detail-player").append('<div id="theatre-mode">Theater</div>');
        $("#theatre-mode").css({
            'position': 'absolute',
            'top': '0px',
            'color': 'white',
            'z-index': '100',
            'display': 'none',
            'cursor': 'pointer'
        });

        $("#detail-player").hover(
            function() {
                $("#theatre-mode").css({
                    'position': 'absolute',
                    'top': '0px',
                    'color': 'white',
                    'z-index': '100',
                    'display': 'initial',
                    'cursor': 'pointer'
                });
            },
            function() {
                $("#theatre-mode").css({
                    'position': 'absolute',
                    'top': '0px',
                    'color': 'white',
                    'z-index': '100',
                    'display': 'none',
                    'cursor': 'pointer'
                });
            }
        );

        $("#theatre-mode").click(function() {
            if (state === false) {
                activateTheatre();
                state = true;
            } else {
                deactivateTheatre();
                state = false;
            }
        });

        $(window).resize(function() {
            if (state === true) {
                activateTheatre();
            }
        });


        function activateTheatre() {
            $("#nav").css({
                "display": "none"
            });

            $("#detailpage").css({
                "padding-top": "0px"
            });

            $("#detail-player").css({
                "height": "calc(100vh)",
                "padding": "0px"
            });

            $("#player-transform").css({
                "max-height": "",
                "height": "calc(100vh)"
            });
        };

        function deactivateTheatre() {
            $('#nav').css({
                'display': 'initial'
            });

            $("#detailpage").css({
                "padding-top": "50px"
            });

            $("#detail-player").css({
                "height": "",
                "padding": "0 20px"
            });

            $("#player-transform").css({
                "max-height": "",
                "height": ""
            });



        };

    }


    function test() {

        $("#nav").css({
            "display": "none"
        });

        $("#detailpage").css({
            "padding-top": "0px"
        });

        $("#detail-player").css({
            "height": "calc(100vh)",
            "padding": "0px"
        });

        $("#player-transform").css({
            "max-height": "",
            "height": "calc(100vh)"
        });
    }

    setTimeout(function() {
        init();
    }, 3000);

});