Skip to content

Instantly share code, notes, and snippets.

@o-az
Created May 16, 2024 09:45
Show Gist options
  • Save o-az/3f362db38b128001ab3b081943eae727 to your computer and use it in GitHub Desktop.
Save o-az/3f362db38b128001ab3b081943eae727 to your computer and use it in GitHub Desktop.
Hide godaddy in https://ens.app with this userscript
// ==UserScript==
// @name hide-godaddy
// @namespace http://tampermonkey.net/
// @version 2024-05-10
// @description Remove GoDaddy ad from ens.app
// @author https://github.com/o-az
// @match https://ens.app
// @match https://app.ens.domains
// @icon https://www.google.com/s2/favicons?sz=64&domain=ens.domains
// @grant none
// ==/UserScript==
(() => {
const culprit = document.querySelector('a[href^="https://aboutus.godaddy.net"]');
if(!culprit) return;
culprit.parentElement.remove();
})();
@o-az
Copy link
Author

o-az commented May 16, 2024

For mac/pc:

  • install https://tampermonkey.net for userscripts (available on all browsers),
  • open extension settings,
  • create a new file,
  • paste the content of the script in this gist, save and close.

For iOS safari install this extension and follow the same steps

For Android find a userscrupts app and follow same steps

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment