01Virex/dsh-foxy-jumpscare1

dsh-foxy-jumpscare

Every second there is a 1-in-1000 chance that Foxy (Withered Foxy) from Five Nights at Freddy's 2 jumpscares you in the DeepSeek Harness web UI: a full-screen scare plus the iconic scream.

AI Analysis

适合想加入随机惊吓效果的用户。安装后可通过 enabled、概率、间隔、时长、音量等参数控制触发。

Package
dsh-foxy-jumpscare
Version
1.0.0
License
MIT
Last updated
Aug 14, 2026

Install

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:01Virex/dsh-foxy-jumpscare

配置

配置优先级从高到低:

  1. localStorage 完整配置:dsh-foxy-jumpscare.config(粘贴 JSON,实时生效,无需刷新);
  2. config.json(项目根,本地个性化,被 .gitignore 忽略;缺省时 node half 自动回退到 config.example.json;修改后需刷新页面重新加载);
  3. 内置默认值(见 lib/client.js 顶部 DEFAULT_CONFIG)。

配置文件格式(config.example.json):

{
  "enabled": true,
  "probability": 0.001,
  "intervalMs": 1000,
  "durationMs": 1800,
  "volume": 1.0,
  "debug": false,
  "imageUrl": "/plugins/dsh-foxy-jumpscare/assets/foxy-jumpscare.webp",
  "soundUrl": "/plugins/dsh-foxy-jumpscare/assets/foxy-scream.ogg"
}
默认说明
enabledtrue总开关;false 彻底关掉(应急用)
probability0.001每次 tick 触发概率(0.001 = 1/1000)
intervalMs1000tick 间隔(毫秒)
durationMs1800jumpscare 持续时长(毫秒)
volume1.0音量 0~1
debugfalse控制台诊断日志
imageUrl见上jumpscare 图片地址
soundUrl见上尖叫音效地址

应急关闭:不想再被吓时,在浏览器控制台执行(1 秒内立即生效,无需刷新):

localStorage.setItem("dsh-foxy-jumpscare.config", JSON.stringify({ enabled: false }));
// 恢复默认:localStorage.removeItem("dsh-foxy-jumpscare.config")