Greasy Fork is available in English.

1024_mob_add_href

try to take over the world!

Per 18-08-2020. Zie de nieuwste versie.

// ==UserScript==
// @name         1024_mob_add_href
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        *://*/thread0806.php*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $('.t_one').each(function(){
        var hf = $(this).attr('onclick');
        if(hf != undefined){
            hf = hf.substr(17,28);
            $(this).children().attr('href',hf);$(this).removeAttr('onclick')
        }    
    })
})();