Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "What If Invested - Investment Opportunity Calculator",
"version": "1.0.0",
"description": "See what your purchases could be worth if you invested the money instead",
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/api.exchangerate-api.com\/*"
],
"icons": {
"16": "icons\/What If Invested_Logo.png",
"48": "icons\/What If Invested_Logo.png",
"128": "icons\/What If Invested_Logo.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/What If Invested_Logo.png",
"48": "icons\/What If Invested_Logo.png",
"128": "icons\/What If Invested_Logo.png"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_idle"
}
]
}