您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Oh baby a triple (triple kill sound effect).
- // ==UserScript==
- // @name triple (vertix.io)
- // @namespace brazilrules
- // @description Oh baby a triple (triple kill sound effect).
- // @version 2.0.1
- // @author BRAZILRULES & HighNoon643
- // @match http://vertix.io/*
- // @grant none
- // ==/UserScript==
- ;(() => {
- let _b = function() {
- socket.on("3", function(a) {
- let t = new Audio('http://soundboard.panictank.net/Oh%20Baby%20A%20Triple.mp3');
- if(3 == a.kd) t.play();
- });
- }
- let _t = window.setInterval(() => {
- if(socket) clearInterval(_t), _b();
- }, 0x64);
- })();