Personal Capital Plus
Customize Personal Capital
What is Personal Capital Plus?
Personal Capital Plus is a Chrome extension developed by Alexander Meng, and its main feature is "Customize Personal Capital".
Extension Screenshots
Download Personal Capital Plus Extension CRX File
Download Personal Capital Plus extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Customize the Empower Personal Dashboard (also known as Personal Capital) user interface. Allows you to customize the UI with several options: Hide zero balance accounts, sort accounts by value, condense the accounts list, hide header background graphs, and hide your net worth. After installing, a new menu option will appear under your named settings dropdown called "Extension". From there you can enable or disable whichever options you like.
Extension Basic Information
Name | Personal Capital Plus |
ID | bkaagconbehchjkhgkojhabaklbpfcfa |
Official URL | https://chromewebstore.google.com/detail/personal-capital-plus/bkaagconbehchjkhgkojhabaklbpfcfa |
Description | Customize Personal Capital |
File Size | 9.38 KB |
Installation Count | 234 |
Current Version | 2.7 |
Last Updated | 2024-02-10 |
Publish Date | 2019-02-23 |
Rating | 4.75/5 Total 4 Ratings |
Developer | Alexander Meng |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/AMeng/personal_capital_plus |
Help Page URL | https://github.com/AMeng/personal_capital_plus/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Personal Capital Plus", "short_name": "PC Plus", "description": "Customize Personal Capital", "version": "2.7", "options_page": "options.html", "content_scripts": [ { "matches": [ "*:\/\/home.personalcapital.com\/*" ], "js": [ "main.js" ] } ], "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ "options.html" ], "permissions": [ "*:\/\/*.personalcapital.com\/*", "storage", "activeTab", "webNavigation" ] } |