Created
February 21, 2019 17:38
-
-
Save pocmo/cc1d37205d91c716b7dc77492ca9d1e4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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