ABEMA 見逃し視聴、ビデオ ワイド表示を拡大

見逃し視聴、ビデオのワイド表示時のプレイヤー部分を拡大 テスト 弊害あり

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
/* ==UserStyle==
@name           ABEMA 見逃し視聴、ビデオ ワイド表示を拡大
@description    見逃し視聴、ビデオのワイド表示時のプレイヤー部分を拡大 テスト 弊害あり
@compatible     Chrome
@version        1.0.6
@author         ykhr.m
@namespace https://greasyfork.org/users/716748
==/UserStyle== */

@-moz-document domain("abema.tv") {
.com-vod-VODResponsiveMainContent--wide-mode .c-vod-EpisodePlayerContainer-container
,.com-vod-VODResponsiveMainContent--wide-mode .c-tv-TimeshiftPlayerContainerView
{
    height: 100vh;
    width: 100vw;
    left: 0;
    position: fixed;
    top: 0;
    z-index: 15;
}

.com-vod-VODResponsiveMainContent--wide-mode {
    height: calc(100vh - 100px) !important;
}
.c-application-FooterContainer {
    display: none !important;
}
/* 縮小できるウインドウサイズ下限を広げる */
.c-application-DesktopAppContainer__content,
.com-vod-VODResponsiveMainContent--wide-mode {
    min-width: 261px !important;
}
}