eToro CSV Portfolio Exporter
Makes your eToro holdings (trades/portfolio) available to export to csv.
Apa itu eToro CSV Portfolio Exporter?
eToro CSV Portfolio Exporter adalah ekstensi Chrome yang dikembangkan oleh Žanas Stundys, dan fitur utamanya adalah "Makes your eToro holdings (trades/portfolio) available to export to csv.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi eToro CSV Portfolio Exporter
Unduh file ekstensi eToro CSV Portfolio Exporter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Export your eToro portfolio holdings to CSV. How to use: - Right-click on the portfolio holdings - Select "Export to CSV" - Holdings will be downloaded to your computer ⚠️ Note: People/CopyPortfolio investments are not supported and will be left out of the exported file.
Informasi Dasar Ekstensi
Nama | eToro CSV Portfolio Exporter |
ID | knkacmdaglcopgobnihpjofgknppobba |
URL Resmi | https://chromewebstore.google.com/detail/etoro-csv-portfolio-expor/knkacmdaglcopgobnihpjofgknppobba |
Deskripsi | Makes your eToro holdings (trades/portfolio) available to export to csv. |
Ukuran File | 368 KB |
Jumlah Instalasi | 304 |
Versi Saat Ini | 1.2 |
Terakhir Diperbarui | 2022-07-30 |
Tanggal Publikasi | 2021-09-13 |
Penilaian | 1.71/5 Total 7 Penilaian |
Pengembang | Žanas Stundys |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "eToro CSV Portfolio Exporter", "version": "1.2", "description": "Makes your eToro holdings (trades\/portfolio) available to export to csv.", "permissions": [ "contextMenus" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.etoro.com\/*" ], "css": [ "content-script.css" ], "js": [ "content-script.js" ] } ], "icons": { "16": "\/images\/icon-16.png", "32": "\/images\/icon-32.png", "48": "\/images\/icon-48.png", "128": "\/images\/icon-128.png", "512": "\/images\/icon-512.png" } } |