您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Use any picture as your car without a premium account! The picture should be 58x24 px, or different size with the same aspect ratio.
// ==UserScript== // @name typeracer.com - Any Car Picture // @namespace http://tampermonkey.net/ // @version 0.3 // @description Use any picture as your car without a premium account! The picture should be 58x24 px, or different size with the same aspect ratio. // @author Balint Sotanyi // @match https://play.typeracer.com/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; var interval = setInterval(function() { var image_url = 'https://i.imgur.com/QIGSs8p.png'; // paste your image link here var my_car = document.querySelector('.avatar-self > .avatarContainer'); if (my_car) { document.querySelector('.avatar-self > .avatarContainer').style.backgroundImage = `url('${image_url}')`; } }, 100); })();