您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Increases the size of throwables, making it easier to avoid them. Makes it very easy to notice mines.
// ==UserScript== // @name Throwables Mod // @namespace https://github.com/Michal2SAB // @version 2.2 // @description Increases the size of throwables, making it easier to avoid them. Makes it very easy to notice mines. // @author Michal2SAB // @match *://surviv.io/* // @match *://surviv2.io/* // @match *://2dbattleroyale.com/* // @match *://2dbattleroyale.org/* // @match *://piearesquared.info/* // @match *://thecircleisclosing.com/* // @match *://archimedesofsyracuse.info/* // @match *://secantsecant.com/* // @match *://parmainitiative.com/* // @match *://nevelskoygroup.com/* // @match *://kugahi.com/* // @match *://chandlertallowmd.com/* // @match *://ot38.club/* // @match *://kugaheavyindustry.com/* // @match *://drchandlertallow.com/* // @match *://rarepotato.com/* // @grant none // ==/UserScript== (function() { 'use strict'; var throwables = "" // Some important shit for this whole thing to work var func = { webpack_inject1: (w, e, get) => { throwables = get("035f2ecb") }, }; if(typeof window.webpackJsonp === 'function') { window.webpackJsonp([0], func, ["webpack_inject1"]); } else { window.webpackJsonp.push([ ["webpack_inject1"], func, [["webpack_inject1"]] ]); } // do the magic Object.keys(throwables).forEach(function(key1) { throwables[key1].worldImg.scale = .25 }) })();