Created
January 8, 2025 18:34
-
-
Save wbamberg/257206fdd20a1d14a0eeb14bc3b9109d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function matches() { | |
const h1 = document.querySelector("h1"); | |
return ( | |
h1 && | |
h1.textContent === "404 Not Found" && | |
location.host.endsWith(".content.dev.mdn.mozit.cloud") | |
); | |
} | |
if (matches()) { | |
console.log("yes!"); | |
const mdnLink = document.createElement("a"); | |
mdnLink.href = `https://developer.mozilla.org/${location.pathname}`; | |
mdnLink.textContent = "View on MDN"; | |
document.body.appendChild(mdnLink); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment