Degiro Statistics

Shows interesting portfolio statistics at the website of broker Degiro.

Degiro Statisticsคืออะไร?

Degiro Statistics เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kuxik009 และคุณลักษณะหลักของมันคือ "Shows interesting portfolio statistics at the website of broker Degiro."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Degiro Statistics

ดาวน์โหลดไฟล์ส่วนขยาย Degiro Statistics ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}