Skip to content

Instantly share code, notes, and snippets.

@djalmajr
Forked from lokothodida/README.md
Created September 30, 2017 18:22
Show Gist options
  • Save djalmajr/ffff212fa278bee82c214eb2de3eb752 to your computer and use it in GitHub Desktop.
Save djalmajr/ffff212fa278bee82c214eb2de3eb752 to your computer and use it in GitHub Desktop.
Small bookmarklet to help change app drawer icons for Chrome OS web apps
  • Create a bookmark with the following text in the URL field:
javascript:(function() {
  var links = document.querySelectorAll('link[rel*=icon]');
  var href  = prompt('Enter your new shelf icon\'s URL');
  href && links.forEach((link) => link.href = href);
})();
  • Click the bookmark on your desired page
  • Enter the desired shelf icon URL and click OK.
  • Add the page to your shelf.

Thanks to /u/dimethylarginine for discovering this trick.

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