Skip to content

Instantly share code, notes, and snippets.

@aluxian
Last active October 31, 2023 16:58
Show Gist options
  • Save aluxian/f9079f02937ff619887fb21889dbc194 to your computer and use it in GitHub Desktop.
Save aluxian/f9079f02937ff619887fb21889dbc194 to your computer and use it in GitHub Desktop.
uBlockOrigin
/// FixGitHubFavicon.js
console.log('fixing GitHub favicon');
window.onload = () => {
[...document.querySelectorAll('.js-site-favicon')].forEach(el => {
el.href = 'https://github.com/aluxian/github-hyperspace-logo/blob/main/favicon-2.png?raw=true';
console.log(el.href);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment