Last active
December 19, 2020 22:42
-
-
Save kofigumbs/4a9708a35807dd16f2541dc3204d6a25 to your computer and use it in GitHub Desktop.
Multi internal links
This file contains 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
{ | |
"tabs": [ | |
{ | |
"title": "Substack Reader", | |
"url": "https://reader.substack.com", | |
"customJs": ["https://gist.githubusercontent.com/kofigumbs/4a9708a35807dd16f2541dc3204d6a25/raw/1579800b262aee48a3c731e0f00e3ce2d20cca01/link.js"] | |
} | |
] | |
} |
This file contains 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
document.addEventListener("click", event => { | |
for (const parent of event.composedPath()) | |
if (parent.tagName === "A" && parent.target === "_blank") { | |
event.preventDefault(); | |
window.location.href = parent.href; | |
return; | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I combined the two to allow drag and drop: