Console Spammer

Spams the chrome developer console (CTRL+SHIFT+J) with messages of your choice

目前为 2022-10-07 提交的版本。查看 最新版本

// ==UserScript==
// @name         Console Spammer
// @namespace    http://tampermonkey.net/
// @homepage     https://gf.qytechs.cn/users/946530-purefishmonke
// @version      1.3
// @description  Spams the chrome developer console (CTRL+SHIFT+J) with messages of your choice
// @supportURL   https://discord.io/BIGfisHInc
// @author       DevFish
// @match        https://*/*
// @license      MIT
// ==/UserScript==

///Config///
var txt="Hello World!"//Text which is logged in the console
var speed="0"//Time (in ms) that the console logs the next line (0 = Instantly)

///Script (Do not edit)///

function startSpam(){console.log(txt);console.log(txt );setTimeout(startSpam,speed)}startSpam();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址