Degiro Statistics
Shows interesting portfolio statistics at the website of broker Degiro.
Qu'est-ce que Degiro Statistics ?
Degiro Statistics est une extension Chrome développée par kuxik009, et sa fonction principale est "Shows interesting portfolio statistics at the website of broker Degiro.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Degiro Statistics
Téléchargez les fichiers d'extension Degiro Statistics au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Degiro Statistics |
ID | ogdaiejfkncolbnojeingdlmffmdehfa |
URL Officiel | https://chromewebstore.google.com/detail/degiro-statistics/ogdaiejfkncolbnojeingdlmffmdehfa |
Description | Shows interesting portfolio statistics at the website of broker Degiro. |
Taille du Fichier | 12.24 KB |
Nombre d'Installations | 120 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2021-09-07 |
Date de Publication | 2021-04-28 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | kuxik009 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/szymsza/degiro-statistics |
URL de la Page d'Aide | https://github.com/szymsza/degiro-statistics |
Langues Prises en Charge | 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" } } |