Auto run RCS in Plug.dj
当前为
// ==UserScript== // @name Plug.dj RCS // @namespace http://tampermonkey.net/ // @version 1.0 // @description Auto run RCS in Plug.dj // @author Salomão Neto <[email protected]> // @match https://plug.dj/* // @grant none // ==/UserScript== (function() { 'use strict'; window.addEventListener('load', () => { $.getScript('https://code.radiant.dj/rcs.min.js'); }); })();