1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-03 16:38:31 +00:00

Maintenance: Fixing build issues for the bundled browser extension.

This commit is contained in:
SirStendec 2023-09-07 14:05:10 -04:00
parent f88f859dcf
commit 459e77a2a3
4 changed files with 7 additions and 5 deletions

View file

@ -6,7 +6,7 @@
return;
const HOST = location.hostname,
SERVER = browser.runtime.getURL("web/"),
SERVER = browser.runtime.getURL("web"),
script = document.createElement('script');
let FLAVOR =
@ -22,5 +22,6 @@
script.crossOrigin = 'anonymous';
script.src = `${SERVER}/${FLAVOR}.js?_=${Date.now()}`;
script.dataset.path = SERVER;
document.head.appendChild(script);
})();