Auto redirect CollabVM and UserVM to dark mode.
// ==UserScript==
// @name CollabVM Dark Mode
// @version 1.1
// @grant none
// @include *://computernewb.com/collab-vm/
// @include *://computernewb.com/collab-vm/user-vm/
// @namespace cvmdarkmoderedirect
// @description Auto redirect CollabVM and UserVM to dark mode.
// @license Public Domain
// ==/UserScript==
if (window.location.pathname == "/collab-vm/") {
window.location = "https://computernewb.com/collab-vm/themes/dark/"
}
if (window.location.pathname == "/collab-vm/user-vm/") {
window.location = "http://computernewb.com/collab-vm/user-vm/themes/dark/"
}