Skip to content

Instantly share code, notes, and snippets.

@wbamberg
Created January 8, 2025 18:34
Show Gist options
  • Save wbamberg/257206fdd20a1d14a0eeb14bc3b9109d to your computer and use it in GitHub Desktop.
Save wbamberg/257206fdd20a1d14a0eeb14bc3b9109d to your computer and use it in GitHub Desktop.
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