eToro CSV Portfolio Exporter

Makes your eToro holdings (trades/portfolio) available to export to csv.

eToro CSV Portfolio Exporter là gì?

eToro CSV Portfolio Exporter là một tiện ích mở rộng Chrome được phát triển bởi Žanas Stundys, và tính năng chính của nó là "Makes your eToro holdings (trades/portfolio) available to export to csv.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng eToro CSV Portfolio Exporter

Tải xuống các tệp mở rộng eToro CSV Portfolio Exporter 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

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên eToro CSV Portfolio Exporter eToro CSV Portfolio Exporter
ID knkacmdaglcopgobnihpjofgknppobba
URL Chính Thức https://chromewebstore.google.com/detail/etoro-csv-portfolio-expor/knkacmdaglcopgobnihpjofgknppobba
Mô tả Makes your eToro holdings (trades/portfolio) available to export to csv.
Kích Thước Tệp 368 KB
Số Lần Cài Đặt 304
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2022-07-30
Ngày Phát Hành 2021-09-13
Đánh Giá 1.71/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Žanas Stundys
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}