Cinematic Spectate Mode in Shell Shockers

Spectate with a rotating camera!

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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);