1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-08 09:24:48 +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 adsense = document.createElement('script');
const script = document.createElement('script'); adsense.async = true;
script.async = true; adsense.src = 'https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1132419379737567';
script.src = 'https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1132419379737567'; adsense.crossOrigin = 'anonymous';
script.crossOrigin = 'anonymous'; document.head.appendChild(adsense);
document.head.appendChild(script);

View File

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