您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Moves the S3.0 Scratch Stage to the left.
// ==UserScript== // @name Scratch Stage Positioner // @namespace http://tampermonkey.net/ // @version 1 // @description Moves the S3.0 Scratch Stage to the left. // @author DamienVesper // @match *://scratch.mit.edu/* // @match *://*.scratch.mit.edu/* // @grant none // ==/UserScript== (function() { 'use strict'; /* LEGAL - All code licensed under the Apache 2.0 License. Code copyright 2019 by DamienVesper. All rights reserved. - All code reproductions must include the below insigna. - Any reproductions of this and other related works that are found to be in violence of this code will be reported and removed. ____ _ |\ \ / | | |_| | \ \ / |____| __ __ __ __ __ __ __ __ __ __ __ | / \ / | | | | | | | | | | | | | | | | | | | | | | |/ \/ | | |__| |__| | |__|_ | | | | | | | | | |__| | | __| __| */ var editorElem = document.querySelector(`.gui_editor-wrapper_2DYcj`); if(!editorElem) return; document.querySelector(`.gui_editor-wrapper_2DYcj`).remove(); document.querySelector(`.gui_flex-wrapper_uXHkj`).appendChild(editorElem); })();