Personal Capital Plus
Customize Personal Capital
Wat is Personal Capital Plus?
Personal Capital Plus is een Chrome-extensie ontwikkeld door Alexander Meng, en de belangrijkste functie is "Customize Personal Capital".
Extensie Screenshots
Download het CRX-bestand van de extensie Personal Capital Plus
Download Personal Capital Plus-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Personal Capital Plus |
ID | bkaagconbehchjkhgkojhabaklbpfcfa |
Officiële URL | https://chromewebstore.google.com/detail/personal-capital-plus/bkaagconbehchjkhgkojhabaklbpfcfa |
Beschrijving | Customize Personal Capital |
Bestandsgrootte | 9.38 KB |
Aantal Installaties | 234 |
Huidige Versie | 2.7 |
Laatst Bijgewerkt | 2024-02-10 |
Publicatiedatum | 2019-02-23 |
Beoordeling | 4.75/5 Totaal 4 Beoordelingen |
Ontwikkelaar | Alexander Meng |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/AMeng/personal_capital_plus |
Help Pagina-URL | https://github.com/AMeng/personal_capital_plus/issues |
Ondersteunde Talen | 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" ] } |