Skip to content

Instantly share code, notes, and snippets.

@d0peman
Last active October 7, 2023 14:21
Show Gist options
  • Save d0peman/28b9d58b0f73337af4c6fd09c06b3720 to your computer and use it in GitHub Desktop.
Save d0peman/28b9d58b0f73337af4c6fd09c06b3720 to your computer and use it in GitHub Desktop.
Namebase JavaScript Bookmarklets
// Bear in mind these are still not perfect and may not work 100% of the time.
// I set them up to use personally as a quick way to navigate Namebase
// How to use:
// Create a new bookmark, set the name to the comments below
// Set the URL to the javascript
// Go to the appropriate page and try clicking the corresponding bookmarklet. All going well, it should take you to the specified page.
// Domain Page/Listing > Domain Manager
javascript: (() => {const url = window.location.href.split("/"); url.splice(3, 1, "domain-manager"); let new_url = url.join("/"); window.location.assign(new_url)})();
// Owned domain offers > Domain Manager
javascript: (() => {const url = window.location.href.split("/"); url.splice(3, 1, "domain-manager"); url.splice(4, 1); url.splice(5, 1); let new_url = url.join("/"); window.location.assign(new_url)})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment