gi hun jumpscare

10/19/2021, 12:57:01 AM

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        gi hun jumpscare
// @namespace   Violentmonkey Scripts
// @match       *://*/*
// @grant       none
// @version     1.0
// @author      static
// @description 10/19/2021, 12:57:01 AM
// ==/UserScript==
let newStyle = document.createElement("style");
newStyle.innerHTML = `@keyframes scare { 0% { width: 100px; height: 100px } 50% { width: 800px; height: 800px } 100% {width:100px; height:100px} } #neco { animation: scare 4s }`
document.head.appendChild(newStyle);
let neco = document.createElement("img");
neco.src = "https://cdn.discordapp.com/attachments/791424837285052430/899883205551861821/unknown.png";
neco.id = "neco";
neco.style.position = "absolute";
document.body.appendChild(neco);