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.
20 lines
578 B
20 lines
578 B
3 years ago
|
// ==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
|
||
|
})();
|