Assists with 401k investment options by providing an overall performance summary.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "http://clients2.google.com/service/update2/crx",
"name": "401k Investment Helper",
"version": "0.4",
"manifest_version": 2,
"description": "Assists with 401k investment options by providing an overall performance summary.",
"icons": {
"16": "icons/16x16.png"
},
"content_scripts": [
{
"matches": [
"https://www.jhancockpensions.com/do/investments/FundList*"
],
"run_at": "document_end",
"js": [
"jquery-1.8.0.min.js",
"libraries/global.js",
"libraries/johnhancock.js"
],
"css": [
"app.css"
]
},
{
"matches": [
"https://dcaccounts.mercerhrs.com/ec/dcaccounts/Retirement/FundPerformance*"
],
"run_at": "document_end",
"all_frames": true,
"js": [
"jquery-1.8.0.min.js",
"libraries/global.js",
"libraries/mercer.js"
],
"css": [
"app.css"
]
}
],
"permissions": [
"https://www.jhancockpensions.com/do/investments/FundList*",
"https://dcaccounts.mercerhrs.com/ec/dcaccounts/Retirement/FundPerformance?linkId=FUNDRESEARCH"
]
}