jjm2473 / 91mjw

// ==UserScript==
// @name         91mjw
// @namespace    https://openuserjs.org/users/jjm2473
// @version      0.1
// @description  91mjw调整播放器尺寸
// @author       jjm2473
// @match        https://91mjw.com/vplay/*
// @match        https://sp.lujiahb.com/play.php?*
// @grant        none
// @run-at       document-end
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    window.element = undefined;
    window.console.clear();
    if (location.pathname.startsWith('/vplay/')) {
        var css = document.createElement('style');
        css.innerHTML = `
.content {
    margin-right:0 !important;
}
#playerbox {
    height: 600px;
}
.sidebar {
    display: none;
}
`;
        document.body.appendChild(css);
    }
})();