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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" ] } |