1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-08 08:44:49 +00:00
This commit is contained in:
zumbiepig 2024-08-21 15:10:26 -07:00
parent 976b37fed3
commit c0e1601541
No known key found for this signature in database
GPG Key ID: 17C891BE28B953DE
2 changed files with 9 additions and 10 deletions

View File

@ -1,6 +1,5 @@
// @ts-nocheck
const script = document.createElement('script');
script.async = true;
script.src = 'https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1132419379737567';
script.crossOrigin = 'anonymous';
document.head.appendChild(script);
const adsense = document.createElement('script');
adsense.async = true;
adsense.src = 'https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1132419379737567';
adsense.crossOrigin = 'anonymous';
document.head.appendChild(adsense);

View File

@ -1,8 +1,8 @@
// @ts-nocheck
const script = document.createElement('script');
script.async = true;
script.src = 'https://www.googletagmanager.com/gtag/js?id=G-GD4SJRCR7Z';
document.head.appendChild(script);
const googleTag = document.createElement('script');
googleTag.async = true;
googleTag.src = 'https://www.googletagmanager.com/gtag/js?id=G-GD4SJRCR7Z';
document.head.appendChild(googleTag);
window.dataLayer = window.dataLayer || [];
function gtag(...args: unknown[]) {