Personal Capital Plus

Customize Personal Capital

Personal Capital Plusとは何ですか?

Personal Capital PlusはAlexander Mengによって開発されたChromeの拡張機能で、その主な機能は「Customize Personal Capital」です。

拡張機能のスクリーンショット

screenshot

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 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
Eメール [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"
    ]
}