Personal Capital Plus

Customize Personal Capital

Что такое Personal Capital Plus?

Personal Capital Plus - это расширение Chrome, разработанное Alexander Meng, и его основная функция - "Customize Personal Capital".

Снимки экрана расширения

screenshot

Скачать файл 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 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"
    ]
}