CEX.io Orders & Positions Lists
Limit orders and margin trading positions table-lists UI improvements: full list shown no need to scroll, profit/loss total display.
Co to jest CEX.io Orders & Positions Lists?
CEX.io Orders & Positions Lists to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Limit orders and margin trading positions table-lists UI improvements: full list shown no need to scroll, profit/loss total display.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia CEX.io Orders & Positions Lists
Pobierz pliki rozszerzeń CEX.io Orders & Positions Lists 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
CEX.io Orders & Positions brings UI improvements for your limit orders and margin trading positions table-lists:
* displays profit/loss summary info for all margin trading positions
* no scroll - view full table-list of your orders/positions
PRIVACY NOTE!
CEX.io Orders & Positions extension does not access, collect, process or use your confidential data! Only works with page HTML.
Feel free to contact me with any suggestions and propositions. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | pdmkajkkpbchgbihmkjimghkbbnoomhp |
| Oficjalny URL | https://chromewebstore.google.com/detail/cexio-orders-positions-li/pdmkajkkpbchgbihmkjimghkbbnoomhp |
| Opis | Limit orders and margin trading positions table-lists UI improvements: full list shown no need to scroll, profit/loss total display. |
| Rozmiar pliku | 21.21 KB |
| Liczba instalacji | 143 |
| Aktualna Wersja | 0.1.1 |
| Ostatnia Aktualizacja | 2018-08-27 |
| Data Publikacji | 2018-08-27 |
| Ocena | 4.13/5 Łącznie 8 Oceny |
| Deweloper | Unknown |
| Typ Płatności | free |
| Obsługiwane Języki | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "CEX.io Orders & Positions Lists",
"short_name": "CEX Lists",
"description": "Limit orders and margin trading positions table-lists UI improvements: full list shown no need to scroll, profit\/loss total display.",
"version": "0.1.1",
"author": "Anton Lysenko",
"permissions": [
"activeTab"
],
"content_scripts": [
{
"matches": [
"https:\/\/*.cex.io\/trade\/*"
],
"css": [
"orders.css"
],
"js": [
"total.js"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": "icon-48.png"
},
"icons": {
"48": "icon-48.png",
"128": "icon-128.png"
}
} | |