You've already forked AstralRinth
24 lines
577 B
JavaScript
24 lines
577 B
JavaScript
document.addEventListener(
|
|
'click',
|
|
function (e) {
|
|
window.top.postMessage({ modrinthAdClick: true }, 'https://modrinth.com')
|
|
|
|
let target = e.target
|
|
while (target != null) {
|
|
if (target.matches('a')) {
|
|
e.preventDefault()
|
|
if (target.href) {
|
|
window.top.postMessage({ modrinthOpenUrl: target.href }, 'https://modrinth.com')
|
|
}
|
|
break
|
|
}
|
|
target = target.parentElement
|
|
}
|
|
},
|
|
true,
|
|
)
|
|
|
|
window.open = (url, target, features) => {
|
|
window.top.postMessage({ modrinthOpenUrl: url }, 'https://modrinth.com')
|
|
}
|