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.”。
扩展截图
下载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. 扩展基本信息
| 名称 | |
| 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"
}
} | |