Link to page
目前為
// ==UserScript==
// @name JoyReactor better mobile link
// @description Link to page
// @namespace https://gist.github.com/qiwichupa/6a81db04507c850e27e7e44bbdd04066
// @homepage https://greasyfork.org/ru/scripts/499146-joyreactor-better-mobile-link
// @author qiwichupa
// @version 2024.06.28.18
// @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);
});