您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This is a script for a hypothetical RPG forum coming to theaters near you.
当前为
// ==UserScript== // @name Hypothetical RPG Userscript // @namespace http://tampermonkey.net/ // @version 0.2000003 // @description This is a script for a hypothetical RPG forum coming to theaters near you. // @author snoozingnewt // @match https://artofproblemsolving.com/community/c1992195* // @icon https://media.discordapp.net/attachments/763965102008696883/839178114449670144/unknown.png?width=2064&height=1019 // @grant GM_addStyle // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js // ==/UserScript== /** This script is an unofficial add on for artofproblemsolving.com and is not affiliated in any way with AoPS Incorporated. This is a script for a hypothetical RPG forum coming to theaters near you. To Do List: 1. Remove excess unneeded code (done!) 2. Put on Greasy Fork, I guess (done?) 3. Figure out the rest of the fonts that don't work (some weird font spaces don't work fsr) 4. Cosmetic Icons (We have username colors but we must have icons) 5. Background (virtually done) 6. Figure out the AoPS Online Logo (Ongoing) 7. Add automated RPG things, bank, item drops, etc. (IMPORTANT) (Kind of the biggest thing and will have to beg someone else to do) 8. Figure out how i can make $ work without an error on a userscript (not important) 9. Learn how to actually code lol (not important) 10. Figure out why it can't work sometimes (done) **/ /* Font Changer */ window.addEventListener('load', function() { (function () { GM_addStyle(` body :not(i){font-family:"Oxygen",system-ui,emoji} `); })(); /* Ranking Colors Do not edit */ $('head').append(` <style> a[title*="snoozingnewt"] { color: #fff000; } a[title*="SamuraiA"] { color: cyan; } a[title*="User] { color: red; } </style> `); /* Background */ var change_color = function(){ document.body.style.background = "url('https://media.discordapp.net/attachments/763965102008696883/839178114449670144/unknown.png?width=2064&height=1019')"; //insert image url } change_color(); /* Notes About Image Taken From: https://wallpaperaccess.com/fantasy-landscape This image is for personal use. */ }, false);