Degiro Statistics

Shows interesting portfolio statistics at the website of broker Degiro.

Degiro Statistics란 무엇입니까?

Degiro Statistics은(는) kuxik009에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows interesting portfolio statistics at the website of broker Degiro."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Degiro Statistics 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Degiro is a great broker, but it may be difficult to access some important information about your portfolio, such as original invested amount, percentage portfolio change, etc.

This is where Degiro Statistics comes into action. Once you access the Portfolio section of your Degiro account it automatically calculates some interesting statistics about your portfolio and renders them into a table. This way you can have a better overview of your assets.

The extension currently displays the following: Total portfolio value, Absolute and relative portfolio change, Invested amount.

All calculations are done locally in your browser. The extension does not communicate with any server in any way. This means that there is no way for us to compromise your data since it never leaves your device.

You can verify this by looking at the source code on GitHub https://github.com/szymsza/degiro-statistics                    

확장 프로그램 기본 정보

이름 Degiro Statistics Degiro Statistics
ID ogdaiejfkncolbnojeingdlmffmdehfa
공식 URL https://chromewebstore.google.com/detail/degiro-statistics/ogdaiejfkncolbnojeingdlmffmdehfa
설명 Shows interesting portfolio statistics at the website of broker Degiro.
파일 크기 12.24 KB
설치 횟수 120
현재 버전 1.1
최근 업데이트 2021-09-07
출시 날짜 2021-04-28
평점 5.00/5 총 2 개의 평점
개발자 kuxik009
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/szymsza/degiro-statistics
도움말 페이지 URL https://github.com/szymsza/degiro-statistics
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Degiro Statistics",
    "description": "Shows interesting portfolio statistics at the website of broker Degiro.",
    "version": "1.1",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png"
    },
    "action": [],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/trader.degiro.nl\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}