apple的Mac bookpro 15.6寸浏览器CC修改B站播放器样式

CC修改B站播放器大小

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         apple的Mac bookpro 15.6寸浏览器CC修改B站播放器样式
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  CC修改B站播放器大小
// @author       com from star xby
// @match        *://www.bilibili.com/video/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @require https://code.jquery.com/jquery-2.1.4.min.js
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    console.log("xby----------------------------------------:")
    setTimeout(function() {
        // 在这里添加你想要执行的代码
        document.querySelector('#viewbox_report').style.display = 'none';
        document.querySelector('.left-container').style.width = '1250px';
        document.querySelector('#bilibili-player').style.width = '1250px';
        document.querySelector('#bilibili-player').style.height = '875px';
        document.querySelector('#arc_toolbar_report').style.marginTop = '280px';
  }, 5000);

})();