Greasy Fork is available in English.

Dedaub To Etherscan Link Helper

Dedaub To Etherscan transcation address link helper

// ==UserScript==
// @name         Dedaub To Etherscan Link Helper
// @namespace    https://etherscan.io/
// @version      1.0
// @description  Dedaub To Etherscan transcation address link helper
// @author       chengxuncc
// @match        *://*.dedaub.com/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @license      MIT
// @require https://code.jquery.com/jquery-3.6.0.min.js
// ==/UserScript==

(function() {
    'use strict';
    $('div.text-truncate > a ').each(function() {
        $(this).attr("target", "_blank");
        $(this).attr("href", $(this).attr("href").replace(/\/contracts\/Ethereum\/([0-9a-fA-F]{40})/mg,"https://etherscan.io/address/0x$1"));
    });
})();