Skip to content

Instantly share code, notes, and snippets.

@pocmo
Created February 21, 2019 17:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pocmo/cc1d37205d91c716b7dc77492ca9d1e4 to your computer and use it in GitHub Desktop.
Save pocmo/cc1d37205d91c716b7dc77492ca9d1e4 to your computer and use it in GitHub Desktop.
console.log("-----------------------------");
document.querySelectorAll('link[rel="icon"]').forEach(
function(currentValue, currentIndex, listObj) {
console.log("ICON (" + currentValue.sizes + "): " + currentValue.href)
})
document.querySelectorAll('link[rel="shortcut icon"]').forEach(
function(currentValue, currentIndex, listObj) {
console.log("SHORTCUT ICON (" + currentValue.sizes + "): " + currentValue.href)
})
{
"manifest_version": 2,
"name": "Mozilla Android Components - Browser Icons",
"version": "1.0",
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["icons.js"],
"run_at": "document_end"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment