Nacos配置内容区域全屏

修改nacos的编辑器区域大小

当前为 2024-03-14 提交的版本,查看 最新版本

// ==UserScript==
// @name         Nacos配置内容区域全屏
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  修改nacos的编辑器区域大小
// @author       You
// @match        http://*/nacos/*
// @icon         https://nacos.io/img/nacos_colorful.png
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    function resetEditor() {
        var container = document.getElementById("container");
        console.log('ttttttttttttttttttttttt', container);
        if (container) {
            // 修改高度为1000px
            container.style.height = "1000px";
        }
    };

    resetEditor();


    window.addEventListener('load', resetEditor);
    document.addEventListener('DOMContentLoaded', resetEditor);


    // 监听哈希值变化
    window.addEventListener('hashchange', resetEditor);

})();