NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name protonmail pm.me redirect
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Redirect from pm.me to mail.protonmail.com
// @author Tomasz Pludowski
// @match https://pm.me/*
// @grant none
// @license MIT
// ==/UserScript==
$(function(){
document.getElementsByClassName("btn btn-ghost btn-short")[0].click();
});