fitten code online ui 优化

fitten code

נכון ליום 09-10-2024. ראה הגרסה האחרונה.

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         fitten code online ui 优化
// @namespace    http://tampermonkey.net/
// @version      2024-10-09.12
// @license      TIM
// @description  fitten code 
// @author       You
// @match        https://code.fittentech.com/playground
// @icon         https://www.google.com/s2/favicons?sz=64&domain=fittentech.com
// @grant        none
// ==/UserScript==

(function () {
    'use strict';

    window.onload = function () {
        console.log("所有内容都已加载完毕");
        myFunction();
    };

    function myFunction() {
        let e = document.querySelector(".iframes-container>iframe:first-of-type");
        e.style.position = "absolute";
        e.style.height = "calc(100vh - 3rem)";
        e.style.width = "100%";
        e.style.zIndex = "999";
        e.style.marginTop = "3rem";

        let h = document.querySelector("header");
        h.style.zIndex = "9999";
        h.style.height = "3rem";

        let f = document.querySelector(".page-wrapper #download");
        f.style.padding = "0";
        f.style.alignItems = "unset";
        f.style.flexDirection = "unset";
        f.style.display = "unset";

        document.querySelector(".iframes-container").style.display = "unset";
        document.querySelector(".page-wrapper").style.overflow = "unset";
        document.querySelector(".iframe-intro-text").remove();
        document.querySelectorAll(".header-navigation ul.navigation-box > li").forEach(function (item) {
            item.style.padding = "0.5rem"; // 设置内边距为0
        });
    }

    // Your code here...


})();