Personal Capital Plus
Customize Personal Capital
什么是Personal Capital Plus?
Personal Capital Plus是由Alexander Meng开发的Chrome扩展程序,该扩展的主要功能是“Customize Personal Capital”。
扩展截图
下载Personal Capital Plus扩展crx文件
下载Personal Capital Plus扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | bkaagconbehchjkhgkojhabaklbpfcfa |
| 官方URL | https://chromewebstore.google.com/detail/personal-capital-plus/bkaagconbehchjkhgkojhabaklbpfcfa |
| 简介 | Customize Personal Capital |
| 文件大小 | 9.38 KB |
| 安装次数 | 234 |
| 当前版本 | 2.7 |
| 更新时间 | 2024-02-10 |
| 上架时间 | 2019-02-23 |
| 评分 | 4.75/5 共4次评分 |
| 开发者 | Alexander Meng |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/AMeng/personal_capital_plus |
| 帮助页面URL | https://github.com/AMeng/personal_capital_plus/issues |
| 支持的语言 | 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"
]
} | |