22 lines
538 B
TypeScript
22 lines
538 B
TypeScript
/*
|
|
* Vencord, a Discord client mod
|
|
* Copyright (c) 2023 Vendicated and contributors
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
import { Devs } from "@utils/constants";
|
|
import definePlugin from "@utils/types";
|
|
|
|
export default definePlugin({
|
|
name: "NoTypingAnimation",
|
|
authors: [Devs.AutumnVN],
|
|
description: "Disables the CPU-intensive typing dots animation",
|
|
patches: [{
|
|
find: "dotCycle",
|
|
replacement: {
|
|
match: /document.hasFocus\(\)/,
|
|
replace: "false"
|
|
}
|
|
}]
|
|
});
|