eToro CSV Portfolio Exporter
Makes your eToro holdings (trades/portfolio) available to export to csv.
Co to jest eToro CSV Portfolio Exporter?
eToro CSV Portfolio Exporter to rozszerzenie Chrome opracowane przez Žanas Stundys, a jego główną funkcją jest „Makes your eToro holdings (trades/portfolio) available to export to csv.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia eToro CSV Portfolio Exporter
Pobierz pliki rozszerzeń eToro CSV Portfolio Exporter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | knkacmdaglcopgobnihpjofgknppobba |
| Oficjalny URL | https://chromewebstore.google.com/detail/etoro-csv-portfolio-expor/knkacmdaglcopgobnihpjofgknppobba |
| Opis | Makes your eToro holdings (trades/portfolio) available to export to csv. |
| Rozmiar pliku | 368 KB |
| Liczba instalacji | 304 |
| Aktualna Wersja | 1.2 |
| Ostatnia Aktualizacja | 2022-07-30 |
| Data Publikacji | 2021-09-13 |
| Ocena | 1.71/5 Łącznie 7 Oceny |
| Deweloper | Žanas Stundys |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
}
} | |