Adding perspective view to Nexus.
// ==UserScript==
// @name Dueling Nexus New Editor
// @namespace https://duelingnexus.com/
// @version 0.2
// @description Adding perspective view to Nexus.
// @author Yasuo Tornado
// @include https://duelingnexus.com/editor/*
// @grant GM_addStyle
// ==/UserScript==
if (window.top !== window.self) // Don’t run in frames.
return;
var currentURL = location.href;
if (currentURL.match("editor/")) {
location.href = location.href.replace("duelingnexus", "ptr.duelingnexus");
};