Personal Capital Plus
Customize Personal Capital
Personal Capital Plus là gì?
Personal Capital Plus là một tiện ích mở rộng Chrome được phát triển bởi Alexander Meng, và tính năng chính của nó là "Customize Personal Capital".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Personal Capital Plus
Tải xuống các tệp mở rộng Personal Capital Plus dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Personal Capital Plus |
ID | bkaagconbehchjkhgkojhabaklbpfcfa |
URL Chính Thức | https://chromewebstore.google.com/detail/personal-capital-plus/bkaagconbehchjkhgkojhabaklbpfcfa |
Mô tả | Customize Personal Capital |
Kích Thước Tệp | 9.38 KB |
Số Lần Cài Đặt | 234 |
Phiên Bản Hiện Tại | 2.7 |
Cập Nhật Lần Cuối | 2024-02-10 |
Ngày Phát Hành | 2019-02-23 |
Đánh Giá | 4.75/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Alexander Meng |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/AMeng/personal_capital_plus |
URL Trang Trợ Giúp | https://github.com/AMeng/personal_capital_plus/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |