Atomic Trade Insights
Atomic Trade inights for Robinhood traders
Co to jest Atomic Trade Insights?
Atomic Trade Insights to rozszerzenie Chrome opracowane przez Atomic Trade Insights, a jego główną funkcją jest „Atomic Trade inights for Robinhood traders”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Atomic Trade Insights
Pobierz pliki rozszerzeń Atomic Trade Insights 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
View the Profit & Loss for each trade you make on the RobinHood trading platform. Each trade is analyzed and calculated to get the exact profit or loss, click on the trade log to see the entries and exits for each trade.
Podstawowe informacje o rozszerzeniu
Nazwa | Atomic Trade Insights |
ID | oeechecmndlmgiopngndagjlodpeoipb |
Oficjalny URL | https://chromewebstore.google.com/detail/atomic-trade-insights/oeechecmndlmgiopngndagjlodpeoipb |
Opis | Atomic Trade inights for Robinhood traders |
Rozmiar pliku | 211 KB |
Liczba instalacji | 49 |
Aktualna Wersja | 0.0.1 |
Ostatnia Aktualizacja | 2019-03-06 |
Data Publikacji | 2019-03-06 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Atomic Trade Insights |
Typ Płatności | free |
Strona Rozszerzenia | https://scar-api.hypesteezy.com/terms |
Adres URL Strony Pomocy | https://scar-api.hypesteezy.com/terms |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Atomic Trade Insights", "version": "0.0.1", "description": "Atomic Trade inights for Robinhood traders", "icons": { "16": "16x16.png", "48": "48x48.png", "128": "128x128.png" }, "browser_action": { "default_title": "Atomic Trade Insights", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/robinhood.com\/*" ], "js": [ "in-content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; img-src * data: 'self' 'unsafe-eval'", "offline_enabled": true, "permissions": [ "https:\/\/robinhood.com\/*" ] } |