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.
Что такое CEX.io Orders & Positions Lists?
CEX.io Orders & Positions Lists - это расширение Chrome, разработанное Unknown, и его основная функция - "Limit orders and margin trading positions table-lists UI improvements: full list shown no need to scroll, profit/loss total display.".
Снимки экрана расширения
Скачать файл CRX расширения CEX.io Orders & Positions Lists
Скачайте файлы расширений CEX.io Orders & Positions Lists в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | |
ID | pdmkajkkpbchgbihmkjimghkbbnoomhp |
Официальный URL | https://chromewebstore.google.com/detail/cexio-orders-positions-li/pdmkajkkpbchgbihmkjimghkbbnoomhp |
Описание | Limit orders and margin trading positions table-lists UI improvements: full list shown no need to scroll, profit/loss total display. |
Размер файла | 21.21 KB |
Количество установок | 143 |
Текущая Версия | 0.1.1 |
Последнее Обновление | 2018-08-27 |
Дата публикации | 2018-08-27 |
Рейтинг | 4.13/5 Всего 8 оценок |
Разработчик | Unknown |
Тип оплаты | free |
Поддерживаемые языки | 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" } } |