fitten code online ui 优化

fitten code

Stan na 09-10-2024. Zobacz najnowsza wersja.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         fitten code online ui 优化
// @namespace    http://tampermonkey.net/
// @version      2024-10-09
// @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.querySelector("header").style.zIndex = "9999";
        h.querySelector("header").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...


})();