您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
fitten code
当前为
// ==UserScript== // @name fitten code online ui 优化 // @namespace http://tampermonkey.net/ // @version 2024-10-09.1 // @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... })();