PlentyPlan Dividend Extension for Robinhood

This extension shows your dividend yield when you login in to Robinhood.com. Some people prefer to measure their investing success…

PlentyPlan Dividend Extension for Robinhood란 무엇입니까?

PlentyPlan Dividend Extension for Robinhood은(는) https://www.plentyplan.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension shows your dividend yield when you login in to Robinhood.com. Some people prefer to measure their investing success…"입니다.

확장 프로그램 스크린샷

screenshot

PlentyPlan Dividend Extension for Robinhood 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension shows your dividend yield when you login in to Robinhood.com. Some people prefer to measure their investing success by dividend payouts rather than today's market fluctuations. Robinhood's homescreen displays your current portfolio value and the day's change in value, but it does not display any information on recent dividends. This plugin reads Robinhood's dividend history, and computes the total over the last 30 days, 90 days, and last year. It then computes the effective dividend yield from that, both on current account balance as well as on principal invested.                    

확장 프로그램 기본 정보

이름 PlentyPlan Dividend Extension for Robinhood PlentyPlan Dividend Extension for Robinhood
ID blhbfgmffophjibmbonfhpoebnoammko
공식 URL https://chrome.google.com/webstore/detail/plentyplan-dividend-exten/blhbfgmffophjibmbonfhpoebnoammko
설명 This extension shows your dividend yield when you login in to Robinhood.com. Some people prefer to measure their investing success…
파일 크기 103 KB
설치 횟수 21
현재 버전 1.0.0.0
최근 업데이트 2019-06-28
출시 날짜 2019-06-28
평점 3.00/5 총 2 개의 평점
개발자 https://www.plentyplan.com
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PlentyPlan Dividend Extension for Robinhood",
    "version": "1.0.0.0",
    "permissions": [
        "storage",
        "tabs",
        "declarativeContent",
        "*:\/\/*.robinhood.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/robinhood.com\/"
            ],
            "js": [
                "content.js",
                "jquery-3.4.1.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "page_action": {
        "default_icon": "icon-128x128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon-16x16.png",
        "32": "icon-32x32.png",
        "64": "icon-64x64.png",
        "128": "icon-128x128.png"
    },
    "background": {
        "page": "background.html",
        "persistent": false
    }
}