Degiro Statistics

Shows interesting portfolio statistics at the website of broker Degiro.

Degiro Statistics là gì?

Degiro Statistics là một tiện ích mở rộng Chrome được phát triển bởi kuxik009, và tính năng chính của nó là "Shows interesting portfolio statistics at the website of broker Degiro.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Degiro Statistics

Tải xuống các tệp mở rộng Degiro Statistics dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Degiro Statistics Degiro Statistics
ID ogdaiejfkncolbnojeingdlmffmdehfa
URL Chính Thức https://chromewebstore.google.com/detail/degiro-statistics/ogdaiejfkncolbnojeingdlmffmdehfa
Mô tả Shows interesting portfolio statistics at the website of broker Degiro.
Kích Thước Tệp 12.24 KB
Số Lần Cài Đặt 120
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2021-09-07
Ngày Phát Hành 2021-04-28
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển kuxik009
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/szymsza/degiro-statistics
URL Trang Trợ Giúp https://github.com/szymsza/degiro-statistics
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}