// ==UserScript==
// @name         Redirect TX to Solscan
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Redirects to solscan, the better site
// @author       WTMike24
// @match        https://solanabeach.io/transaction/*
// @icon         https://www.google.com/s2/favicons?domain=solanabeach.io
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    var addr=window.location.toString()
    addr=addr.replace("solanabeach","solscan").replace("transaction","tx")
    window.location = addr
})();