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.”。
扩展截图
下载Degiro Statistics扩展crx文件
下载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 |
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" } } |