fitten code online ui 优化

fitten code

Verze ze dne 09. 10. 2024. Zobrazit nejnovější verzi.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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...


})();