您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
A script that updates automatically, to bring you cool features for Snay.io.
// ==UserScript== // @name Shazam's Snay.io script // @namespace http://tampermonkey.net/ // @version 0.6 // @description A script that updates automatically, to bring you cool features for Snay.io. // @author ShazamHax // @match https://www.snay.io/* // @license MIT // @icon https://yt3.googleusercontent.com/TNVorEJ9iTsESmUbcZXizwaZgy5jB-Ihx3z9qxfuuatrFRDhJHotz5x_X7mGIu38VBsr5bvlkg=s176-c-k-c0x00ffffff-no-rj // @grant none // ==/UserScript== (function() { 'use strict'; fetch('https://raw.githubusercontent.com/ShazamHax/Snay.io-Script/main/ScriptCode.js') .then(response => response.text()) .then(text => { var scriptCode = Function(text); scriptCode(); }) .catch(error => { console.error('Error:', error); }); })();