去除滚动条
// ==UserScript==
// @name 115去除全屏滚动条
// @namespace http://ihead.info/
// @version 0.1
// @description 去除滚动条
// @author @ihead
// @match https://v.anxia.com/*
// @grant none
// ==/UserScript==
var styleEl = document.createElement('style');
styleEl.type = 'text/css';
styleEl.innerHTML = '::-webkit-scrollbar {display: none; /* Chrome Safari */}';
document.documentElement.appendChild(styleEl);