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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    }
}