reload fixer

keeps the game from reloading a bunch

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         reload fixer
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  keeps the game from reloading a bunch
// @author       shellshock hacker
// @match        *://shellshock.io/*
// @icon         https://www.google.com/s2/favicons?domain=shellshock.io
// @grant        none
// @run-at       document-start
// ==/UserScript==

(function() {
    'use strict';
    localStorage.removeItem('lastVersionPlayed');
})();