Trying to make a Chrome extension, and for some reasons beyond me, I have to load images from a url hosted elsewhere...
{
"name": "Name",
"version": "1.0",
"manifest_version": 1,
"description": "A something something something",
"browser_action": {
"default_icon": "favicon.ico",
"default_popup": "popup.html"
},
"icons": {
"128": "logo_white.gif"
}
}
How can I load favicon.ico and logo_white.gif from http://www.example.com/favicon.ico and http://www.example.com/logo_white.gif instead? I'm baffled since I'm reasonably new to chrome extensions and their use of JSON.
Thanks