19 lines
605 B
JavaScript
19 lines
605 B
JavaScript
// ==UserScript==
|
|
// @name Runcity
|
|
// @namespace http://tampermonkey.net/
|
|
// @version 2026-08-15
|
|
// @description Prettify pages & store data on server
|
|
// @author You
|
|
// @match https://rst.runcity.org/*
|
|
// @icon https://www.google.com/s2/favicons?sz=64&domain=runcity.org
|
|
// @grant none
|
|
// @require https://code.jquery.com/jquery-3.7.1.min.js
|
|
// @require https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js
|
|
// @require https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js
|
|
// ==/UserScript==
|
|
|
|
(function () {
|
|
'use strict';
|
|
|
|
code;
|
|
})(); |