JoyReactor better mobile link

Link to page

目前为 2024-06-28 提交的版本。查看 最新版本

// ==UserScript==
// @name         JoyReactor better mobile link
// @description  Link to page
// @namespace    https://gist.github.com/qiwichupa/6a81db04507c850e27e7e44bbdd04066
// @author       qiwichupa
// @version      2024.06.28.17
// @license      Public Domain
// @include      http*://*.reactor.cc*
// @grant        none
// ==/UserScript==

$('a[href^="http://m.joyreactor.cc"]').each(function() {
    var $button = $(this);
    var href = $button.attr('href');
    if (href)
        var $page=window.location.href.replace(window.location.origin, "")
        $button.attr('href', href+"/"+$page);
});