forked from mozilla-mobile/android-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue mozilla-mobile#2080: Extract website icon resources via WebExte…
…nsion.
- Loading branch information
Showing
5 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
64 changes: 64 additions & 0 deletions
64
components/browser/icons/src/main/assets/extensions/browser-icons/icons.js
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
|
||
/* | ||
* This web extension looks for known icon tags, collects URLs and available | ||
* meta data (e.g. sizes) and passes that to the app code. | ||
*/ | ||
|
||
function collect_link_icons(icons, rel) { | ||
document.querySelectorAll('link[rel="' + rel + '"]').forEach( | ||
function(currentValue, currentIndex, listObj) { | ||
icons.push({ | ||
'type': rel, | ||
'href': currentValue.href, | ||
'sizes': currentValue.sizes | ||
}); | ||
}) | ||
} | ||
|
||
function collect_meta_property_icons(icons, property) { | ||
document.querySelectorAll('meta[property="' + property + '"]').forEach( | ||
function(currentValue, currentIndex, listObj) { | ||
icons.push({ | ||
'type': property, | ||
'href': currentValue.content | ||
}) | ||
} | ||
) | ||
} | ||
|
||
function collect_meta_name_icons(icons, name) { | ||
document.querySelectorAll('meta[name="' + name + '"]').forEach( | ||
function(currentValue, currentIndex, listObj) { | ||
icons.push({ | ||
'type': name, | ||
'href': currentValue.content | ||
}) | ||
} | ||
) | ||
} | ||
|
||
let icons = []; | ||
|
||
collect_link_icons(icons, 'icon'); | ||
collect_link_icons(icons, 'shortcut icon'); | ||
collect_link_icons(icons, 'fluid-icon') | ||
collect_link_icons(icons, 'apple-touch-icon') | ||
collect_link_icons(icons, 'image_src') | ||
collect_link_icons(icons, 'apple-touch-icon image_src') | ||
collect_link_icons(icons, 'apple-touch-icon-precomposed') | ||
|
||
collect_meta_property_icons(icons, 'og:image') | ||
collect_meta_property_icons(icons, 'og:image:url') | ||
collect_meta_property_icons(icons, 'og:image:secure_url') | ||
|
||
collect_meta_name_icons(icons, 'twitter:image') | ||
collect_meta_name_icons(icons, 'msapplication-TileImage') | ||
|
||
// TODO: For now we are just logging the icons we found here. We need the Messaging API | ||
// to actually be able to pass them to the Android world. | ||
// https://github.com/mozilla-mobile/android-components/issues/2243 | ||
// https://bugzilla.mozilla.org/show_bug.cgi?id=1518843 | ||
console.log("browser-icons: (" + icons.length + ")", document.location.href, icons) |
12 changes: 12 additions & 0 deletions
12
components/browser/icons/src/main/assets/extensions/browser-icons/manifest.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"manifest_version": 2, | ||
"name": "Mozilla Android Components - Browser Icons", | ||
"version": "1.0", | ||
"content_scripts": [ | ||
{ | ||
"matches": ["*://*/*"], | ||
"js": ["icons.js"], | ||
"run_at": "document_end" | ||
} | ||
] | ||
} |
This file contains 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
This file contains 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