9aa205b5ec
Co-authored-by: Nuckyz <61953774+Nuckyz@users.noreply.github.com>
28 lines
948 B
TypeScript
28 lines
948 B
TypeScript
/*
|
|
* Vencord, a Discord client mod
|
|
* Copyright (c) 2023 Vendicated and contributors
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
import { RendererSettings } from "@main/settings";
|
|
import { app } from "electron";
|
|
|
|
app.on("browser-window-created", (_, win) => {
|
|
win.webContents.on("frame-created", (_, { frame }) => {
|
|
frame.once("dom-ready", () => {
|
|
if (frame.url.startsWith("https://open.spotify.com/embed/")) {
|
|
const settings = RendererSettings.store.plugins?.FixSpotifyEmbeds;
|
|
if (!settings?.enabled) return;
|
|
|
|
frame.executeJavaScript(`
|
|
const original = Audio.prototype.play;
|
|
Audio.prototype.play = function() {
|
|
this.volume = ${(settings.volume / 100) || 0.1};
|
|
return original.apply(this, arguments);
|
|
}
|
|
`);
|
|
}
|
|
});
|
|
});
|
|
});
|