eToro CSV Portfolio Exporter

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

什麼是eToro CSV Portfolio Exporter?

eToro CSV Portfolio Exporter是由Žanas Stundys開發的Chrome擴展程式,該擴展的主要功能是“Makes your eToro holdings (trades/portfolio) available to export to csv.”。

擴展截圖

screenshot

下載eToro CSV Portfolio Exporter擴展crx文件

下載eToro CSV Portfolio Exporter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 eToro CSV Portfolio Exporter eToro CSV Portfolio Exporter
ID knkacmdaglcopgobnihpjofgknppobba
官方網址 https://chromewebstore.google.com/detail/etoro-csv-portfolio-expor/knkacmdaglcopgobnihpjofgknppobba
簡介 Makes your eToro holdings (trades/portfolio) available to export to csv.
檔案大小 368 KB
安裝次數 304
目前版本 1.2
更新時間 2022-07-30
上架時間 2021-09-13
評分 1.71/5 共 7 次評分
開發者 Žanas Stundys
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    }
}