Degiro Statistics

Shows interesting portfolio statistics at the website of broker Degiro.

Degiro Statistics क्या है?

Degiro Statistics kuxik009 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows interesting portfolio statistics at the website of broker Degiro."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Degiro Statistics एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}