您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork镜像 is available in English.
12/6/2022, 11:57:43 AM
当前为
// ==UserScript== // @name Sploop.io update script // @namespace Trash key bind changing // @match https://sploop.io/ // @grant none // @version 1 // @author Urban Dubov // @description 12/6/2022, 11:57:43 AM // ==/UserScript== const keybindObj = { // When you have changed your key bind, you need to join sploop.io and reload again for change to take affect. keybinds: `{"0":"KeyW","1":"KeyS","2":"KeyD","3":"KeyA","4":"KeyF","5":"KeyQ","6":"Space","7":"KeyR","8":"KeyR","9":"KeyX","10":"KeyE","11":"ArrowUp","12":"ArrowRight","13":"ArrowDown","14":"ArrowLeft","15":"Escape","16":"Enter","17":"KeyL","18":"KeyN"}`, applicationUpdate: function (id, keybinds) { localStorage.removeItem(id); localStorage.removeItem(keybinds); localStorage.setItem(keybinds, this.keybinds); }, }, settings = { ...keybindObj }, Settings = settings; Settings.applicationUpdate("_adIds", "keybinds");