Shows interesting portfolio statistics at the website of broker Degiro.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
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"
}
}