您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Spectate with a rotating camera!
// ==UserScript== // @name Cinematic Spectate Mode in Shell Shockers // @namespace http://tampermonkey.net/ // @version 0.2 // @description Spectate with a rotating camera! // @author Jayvan // @match https://shellshock.io/ // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // ==/UserScript== setTimeout(function(){ var readouts = document.getElementById('readouts'); //readouts.appendChild(document.getElementById('game-play-switch')); var buttonContainer = document.createElement("div"); buttonContainer.style.width = 200; buttonContainer.style.height = 50; buttonContainer.style.marginLeft = "20000px"; const buttons = document.getElementById('game-play-switch'); readouts.appendChild(buttonContainer); buttonContainer.appendChild(buttons); }, 4500); let style = document.createElement('link'); style.rel = 'stylesheet'; style.href = 'https://SSSPECCINEMATIC.jayvan229.repl.co/style.css'; document.head.appendChild(style); setTimeout(function(){ var div = document.getElementById('pausePopup'); while(div.firstChild) { div.removeChild(div.firstChild); } var div2 = document.getElementById('inGameScaler'); while(div2.firstChild) { div2.removeChild(div2.firstChild); } }, 5000);