Personal Capital Plus

Customize Personal Capital

Personal Capital Plus란 무엇입니까?

Personal Capital Plus은(는) Alexander Meng에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customize Personal Capital"입니다.

확장 프로그램 스크린샷

screenshot

Personal Capital Plus 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.                    

확장 프로그램 기본 정보

이름 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"
    ]
}