设置vnc的滚动条

设置vnc的滚动条上下以及左右都隐藏

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         设置vnc的滚动条
// @description  设置vnc的滚动条上下以及左右都隐藏
// @match        https://ecs.console.aliyun.com/vnc/index.htm?*
// @license      GPL-3.0 License
// @version 0.0.1.20240923084800
// @namespace https://greasyfork.org/users/1256247
// ==/UserScript==

(function () {
    'use strict';

    window.onload = function () {
        let st = setInterval(function () {
            let ebHtml = document.getElementsByTagName('html')[0];
            if (!!ebHtml) {
                ebHtml.style.overflow = 'hidden';
                clearInterval(st);
            }
        }, 1000);
    }
})();