fitten code online ui 优化

fitten code

Tính đến 09-10-2024. Xem phiên bản mới nhất.

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

Bạn sẽ cần cài đặt một tiện ích mở rộng như Tampermonkey hoặc Violentmonkey để cài đặt kịch bản này.

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.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

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


})();