Greasy Fork

ProtonMail Beta

Redirects from 'login.protonmail.com' to 'beta.protonmail.com'

当前为 2020-12-16 提交的版本,查看 最新版本

// ==UserScript==
// @name         ProtonMail Beta
// @version      1.0
// @author       openpaige
// @description  Redirects from 'login.protonmail.com' to 'beta.protonmail.com'
// @icon         https://protonmail.com/images/media/logos/protonmail-sign-dark.png
// @match        *://login.protonmail.com/*
// @run-at       document-start
// @namespace https://greasyfork.org/users/668007
// ==/UserScript==

function checkURL(url){
    return !!url.match(/^(|http(s?):\/\/)(|login.)protonmail.com(\/.*|$)/gim);
}

function newURL(url){
    return 'https://beta.protonmail.com' + url.split('protonmail.com').pop();
}

if(checkURL(window.location.href)){window.location.assign(newURL(window.location.href));}