eToro CSV Portfolio Exporter
Makes your eToro holdings (trades/portfolio) available to export to csv.
What is eToro CSV Portfolio Exporter?
eToro CSV Portfolio Exporter is a Chrome extension developed by Žanas Stundys, and its main feature is "Makes your eToro holdings (trades/portfolio) available to export to csv.".
Extension Screenshots
Download eToro CSV Portfolio Exporter Extension CRX File
Download eToro CSV Portfolio Exporter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | eToro CSV Portfolio Exporter |
ID | knkacmdaglcopgobnihpjofgknppobba |
Official URL | https://chromewebstore.google.com/detail/etoro-csv-portfolio-expor/knkacmdaglcopgobnihpjofgknppobba |
Description | Makes your eToro holdings (trades/portfolio) available to export to csv. |
File Size | 368 KB |
Installation Count | 304 |
Current Version | 1.2 |
Last Updated | 2022-07-30 |
Publish Date | 2021-09-13 |
Rating | 1.71/5 Total 7 Ratings |
Developer | Žanas Stundys |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |