Equissant
Some checks are pending
Sync to Codeberg / Sync Codeberg and Github (push) Waiting to run
Test / Test (push) Waiting to run

This commit is contained in:
thororen1234 2025-03-17 13:26:12 -04:00
parent 7c5f01bf11
commit 69878952a0
No known key found for this signature in database
2 changed files with 44 additions and 1 deletions

View file

@ -138,7 +138,7 @@ export default definePlugin({
settingsAboutComponent: () => {
return (
<>
<Text>To change your keycode, check out <a href="https://www.toptal.com/developers/keycode" target="_blank" rel="noreferrer">this tool</a>!</Text>
<Text>To change your keycode, check out <a href="https://www.toptal.com/developers/keycode" target="_blank" rel="noreferrer noopener">this tool</a>!</Text>
</>
);
},

View file

@ -0,0 +1,43 @@
/*
* Vencord, a modification for Discord's desktop app
* Copyright (c) 2022 Vendicated and Megumin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import { EquicordDevs } from "@utils/constants";
import definePlugin from "@utils/types";
let clickCount = 0;
function play() {
clickCount++;
if (clickCount % 10 === 0) {
const audio = new Audio("https://github.com/Equicord/Equibored/raw/main/sounds/equissant/croissant.mp3");
audio.play();
}
}
export default definePlugin({
name: "Equissant",
description: "Crossant every 10 clicks :trolley:",
authors: [EquicordDevs.SomeAspy, EquicordDevs.thororen],
start() {
document.addEventListener("click", play);
},
stop() {
document.removeEventListener("click", play);
}
});