// ==UserScript== // @name Scenexe Theme // @version 1.0.1 // @description theme for scenxe.io // @match *://scenexe.io/ // @license MIT // @namespace http://tampermonkey.net/ // @downloadURL https://update.greasyfork.icu/scripts/436599/Scenexe%20%20Theme.user.js // @updateURL https://update.greasyfork.icu/scripts/436599/Scenexe%20%20Theme.meta.js // ==/UserScript== //all credit goes to arras noob // "G key" CanvasRenderingContext2D.prototype._stroke = CanvasRenderingContext2D.prototype._stroke || CanvasRenderingContext2D.prototype.stroke; CanvasRenderingContext2D.prototype._fillText = CanvasRenderingContext2D.prototype._fillText || CanvasRenderingContext2D.prototype.fillText CanvasRenderingContext2D.prototype._strokeText = CanvasRenderingContext2D.prototype._strokeText || CanvasRenderingContext2D.prototype.strokeText CanvasRenderingContext2D.prototype.stroke = function() { this.shadowBlur = this.lineWidth / 2;// remove this line to have no blur this.shadowColor = this.strokeStyle; // remove this line to have no blur //tanks in genral this.fillStyle = "#1AFAE3" this._stroke(...arguments) this.shadowBlur = 0; // remove this line for no blur }; CanvasRenderingContext2D.prototype.fillText = function() { this._fillText(...arguments) this.shadowBlur = 0; }; //names exc... CanvasRenderingContext2D.prototype.strokeText = function() { this.strokeStyle = "#70CB09" this._strokeText(...arguments); }; 'use strict'; const HTML = ` Builds

same as diep.io builds? I aint sure


diep.io hybrid and slave. my fist image!diep cool pic
Scenexe.io menu thing? arras cool pic
if you understand you do. if you dont... Click here The original ver. here
` const styles = ` a:link { color: green; background-color: transparent; text-decoration: none; } a:visited { color: pink; background-color: transparent; text-decoration: none; } a:hover { color: red; background-color: transparent; text-decoration: underline; } a:active { color: yellow; background-color: transparent; text-decoration: underline; } .greenthing {border: 1px solid green; padding-left:10px; padding-right:10px; border-collapse: collapse; overflow-y:auto; word-wrap:break-all; } div#greenthing > table, th, td { } div#greenthing > button { font-family: inherit; font-size: 1em; } } ` const menuStyles = { position: "absolute", top: "25%", width:"50vw", height:"65vh", left: "25%", display: "none", "background-color": "rgba(0, 80, 89, 1)", "font-family":'"Montserrat","Verdana"' } // const menu = document.createElement("div") for (var prop in menuStyles) { menu.style[prop] = menuStyles[prop] } menu.innerHTML = HTML menu.id = "dt-menu" const styleElement = document.createElement("style") const font = document.createElement("link") font.rel = "stylesheet" font.href = "https://fonts.googleapis.com/css?family=Montserrat" styleElement.innerHTML = styles document.head.appendChild(styleElement) document.head.appendChild(font) document.body.appendChild(menu) const myEvent = function(event) { switch (event.key) { case "Escape": if (menu.style.display == "none") { menu.style.display = "block" console.log("Menu Enabled!") } else { menu.style.display = "none" console.log("Menu Disabled!") } break } } window.addEventListener("keydown",myEvent) console.log("scenxe menu loaded!")