You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
316 B
11 lines
316 B
2 years ago
|
// This is just the bootstrap script
|
||
|
|
||
|
if (typeof browser === "undefined") {
|
||
|
var browser = chrome;
|
||
|
}
|
||
|
|
||
|
var script = document.createElement("script");
|
||
|
script.src = browser.runtime.getURL("dist/Vencord.js");
|
||
|
// documentElement because we load before body/head are ready
|
||
|
document.documentElement.appendChild(script);
|