01Virex/dsh-foxy-jumpscare ↗★ 1
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 分析
适合想加入随机惊吓效果的用户。安装后可通过 enabled、概率、间隔、时长、音量等参数控制触发。
インストール
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:01Virex/dsh-foxy-jumpscareドキュメント
README 全文を読む ↗配置
配置优先级从高到低:
- localStorage 完整配置:
dsh-foxy-jumpscare.config(粘贴 JSON,实时生效,无需刷新); config.json(项目根,本地个性化,被.gitignore忽略;缺省时 node half 自动回退到config.example.json;修改后需刷新页面重新加载);- 内置默认值(见
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"
}
| 键 | 默认 | 说明 |
|---|---|---|
enabled | true | 总开关;false 彻底关掉(应急用) |
probability | 0.001 | 每次 tick 触发概率(0.001 = 1/1000) |
intervalMs | 1000 | tick 间隔(毫秒) |
durationMs | 1800 | jumpscare 持续时长(毫秒) |
volume | 1.0 | 音量 0~1 |
debug | false | 控制台诊断日志 |
imageUrl | 见上 | jumpscare 图片地址 |
soundUrl | 见上 | 尖叫音效地址 |
应急关闭:不想再被吓时,在浏览器控制台执行(1 秒内立即生效,无需刷新):
localStorage.setItem("dsh-foxy-jumpscare.config", JSON.stringify({ enabled: false }));
// 恢复默认:localStorage.removeItem("dsh-foxy-jumpscare.config")