Skip to content

Instantly share code, notes, and snippets.

@vsimko
Last active April 23, 2018 10:56
Show Gist options
  • Save vsimko/bd0c73f502a16a096da06175bdaa6106 to your computer and use it in GitHub Desktop.
Save vsimko/bd0c73f502a16a096da06175bdaa6106 to your computer and use it in GitHub Desktop.
// run this code in dev console when you selected your icon
var x = document.createElement('img')
x.src = document.querySelector('.iconPreview').style.backgroundImage.replace(/url\("/,'').replace(/"\)$/, '')
document.body.replaceWith(x)
// or use this as a bookmark in your chrome
// Name: TNP Download
// URL: javascript:!(function() { var x = document.createElement('img'); x.src = document.querySelector('.iconPreview').style.backgroundImage.replace(/url\("/,'').replace(/"\)$/, ''); document.body.replaceWith(x) })()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment