Personal Capital Plus
Customize Personal Capital
Personal Capital Plusคืออะไร?
Personal Capital Plus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alexander Meng และคุณลักษณะหลักของมันคือ "Customize Personal Capital"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Personal Capital Plus
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" ] } |