FinFux
Sammeldownloads auf Knopfdruck für Scalable Capital, Trade Republic und ING.
Cos'è FinFux?
FinFux è un'estensione di Chrome sviluppata da google, e la sua funzione principale è "Sammeldownloads auf Knopfdruck für Scalable Capital, Trade Republic und ING.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione FinFux
Scarica i file di estensione FinFux in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
FinFux erleichtert dir die Arbeit mit deinen Investment-Portfolios und Depots durch folgende Features:
📥 SAMMELDOWNLOADS
Lade deine letzen Transaktionen von Scalable Capital, Trade Republic oder der ING gesammelt, einfach und bequem auf Knopfdruck herunter. Spare viel Zeit mit dem Bulk-Export der Dokumente, um diese dann zum Beispiel in Portfolio Performance oder Parqet zu importieren.
📖 ANLEITUNG
Nach der Installation von "FinFux" findest du den Button "Sammel-Download" - je nach Broker - auf folgenden Seiten:
- Trade Republic: Profil-Seite (https://app.traderepublic.com/profile)
- Scalable Capital: Transaktionen-Seite (https://de.scalable.capital/broker/transactions)
- ING: Postbox-Seite (https://banking.ing.de/app/postbox/postbox) Informazioni di Base sull'Estensione
| Nome | |
| ID | hkamfaenmknibpcjhcifklcjmmnhdagn |
| URL Ufficiale | https://chromewebstore.google.com/detail/finfux/hkamfaenmknibpcjhcifklcjmmnhdagn |
| Descrizione | Sammeldownloads auf Knopfdruck für Scalable Capital, Trade Republic und ING. |
| Dimensione del File | 56.25 KB |
| Conteggio Installazioni | 420 |
| Versione Corrente | 0.0.8 |
| Ultimo Aggiornamento | 2023-11-18 |
| Data di Pubblicazione | 2023-09-16 |
| Valutazione | 5.00/5 Totale 6 Valutazioni |
| Sviluppatore | |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://finfux.download |
| Lingue Supportate | de |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "FinFux",
"version": "0.0.8",
"manifest_version": 3,
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/*.amazonaws.com\/*"
],
"author": "Thorsten Schleinzer \u2022 schleinzer.dev",
"description": "Sammeldownloads auf Knopfdruck f\u00fcr Scalable Capital, Trade Republic und ING.",
"icons": {
"64": "finfux_logo_64x64.png"
},
"action": {
"default_icon": {
"64": "finfux_logo_64x64.png"
},
"default_title": "FinFux \u00a9 Thorsten Schleinzer \u2022 schleinzer.dev",
"default_popup": "popup.html"
},
"background": {
"service_worker": "service-worker.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.scalable.capital\/*"
],
"run_at": "document_idle",
"js": [
"base.js",
"js\/scalablecapital.js"
]
},
{
"matches": [
"https:\/\/app.traderepublic.com\/*"
],
"run_at": "document_idle",
"js": [
"base.js",
"js\/traderepublic.js"
]
},
{
"matches": [
"https:\/\/banking.ing.de\/*"
],
"run_at": "document_idle",
"js": [
"base.js",
"js\/ing.js"
]
}
]
} | |