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.
擴展基本資訊
名稱 | Personal Capital Plus |
ID | bkaagconbehchjkhgkojhabaklbpfcfa |
官方網址 | 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" ] } |