FinFux
Sammeldownloads auf Knopfdruck für Scalable Capital, Trade Republic und ING.
FinFux là gì?
FinFux là một tiện ích mở rộng Chrome được phát triển bởi google, và tính năng chính của nó là "Sammeldownloads auf Knopfdruck für Scalable Capital, Trade Republic und ING.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng FinFux
Tải xuống các tệp mở rộng FinFux dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | FinFux |
ID | hkamfaenmknibpcjhcifklcjmmnhdagn |
URL Chính Thức | https://chromewebstore.google.com/detail/finfux/hkamfaenmknibpcjhcifklcjmmnhdagn |
Mô tả | Sammeldownloads auf Knopfdruck für Scalable Capital, Trade Republic und ING. |
Kích Thước Tệp | 56.25 KB |
Số Lần Cài Đặt | 420 |
Phiên Bản Hiện Tại | 0.0.8 |
Cập Nhật Lần Cuối | 2023-11-18 |
Ngày Phát Hành | 2023-09-16 |
Đánh Giá | 5.00/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://finfux.download |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |