您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Add a toggle to widen the solution articles to view long code easier.
当前为
// ==UserScript== // @name LeetCode solution article widener // @namespace https://github.com/zica87/self-made-userscipts // @version 1.1 // @description Add a toggle to widen the solution articles to view long code easier. // @author zica // @match https://leetcode.com/problems/*/solutions/*/*/* // @grant none // @license GPL-2.0 // ==/UserScript== (function() { 'use strict'; const toggle = document.createElement('button'); toggle.innerText = '←→'; Object.assign(toggle.style, { color: 'white', backgroundColor: 'rgb(40 40 40)', borderRadius: '0.75rem', padding: '1em', fontSize: '110%', fontWeight: 'bold', zIndex: '999', position: 'fixed', bottom: '5vh', right: '2vw', }); toggle.onclick = ()=>{ if (toggle.innerText === '←→'){ document.getElementsByClassName('lc-lg:w-[250px]')[0].hidden = true; document.getElementsByClassName('max-w-[1020px]')[0].style.maxWidth = 'none'; document.getElementsByClassName('lc-lg:max-w-[700px]')[0].style.maxWidth = 'none'; toggle.innerText = 'Default'; } else{ document.getElementsByClassName('max-w-[1020px]')[0].style = '1020px'; document.getElementsByClassName('lc-lg:max-w-[700px]')[0].style.maxWidth = '700px'; document.getElementsByClassName('lc-lg:w-[250px]')[0].hidden = false; toggle.innerText = '←→'; } }; document.body.appendChild(toggle); })();