=LOVE, ≠ME, ≒JOY スマホ版ページをPC版にリダイレクトする

Redirects from sp.subdomains for =LOVE, ≠ME, and ≒JOY to their main sites.

// ==UserScript==
// @name         =LOVE, ≠ME, ≒JOY スマホ版ページをPC版にリダイレクトする
// @namespace    http://tampermonkey.net/
// @version      2.0
// @description  Redirects from sp.subdomains for =LOVE, ≠ME, and ≒JOY to their main sites.
// @author       anonymous
// @match        https://sp.equal-love.jp/*
// @match        https://sp.not-equal-me.jp/*
// @match        https://sp.nearly-equal-joy.jp/*
// @grant        none
// @run-at       document-start
// ==/UserScript==

(function() {
    'use strict';
    const newUrl = window.location.href.replace('//sp.', '//');
    window.location.replace(newUrl);
})();