Console Spammer

Spams the dev console with messages of your choice

目前為 2022-08-16 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Console Spammer
// @namespace    http://tampermonkey.net/
// @homepage     https://gf.qytechs.cn/users/946530-purefishmonke
// @version      1.1
// @description  Spams the dev console with messages of your choice
// @author       purefishmonke
// @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或关注我们的公众号极客氢云获取最新地址