You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
scripts/javascript/Solanabeach-RedirectToSolsc...

20 lines
578 B

// ==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
})();