Trade Shortcuts
Make cryptocurrency trading Fast and efficient with Shortcuts
Что такое Trade Shortcuts?
Trade Shortcuts - это расширение Chrome, разработанное tradeshortcuts2022, и его основная функция - "Make cryptocurrency trading Fast and efficient with Shortcuts".
Снимки экрана расширения
Скачать файл CRX расширения Trade Shortcuts
Скачайте файлы расширений Trade Shortcuts в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Trade shortcuts are chrome extension that help you make fast and efficient trading through shortcuts within cryptocurrency exchanges.
==Supported Exchanges==
- binance
- bybit
- bitget
==Features==
- Move tabs
- Buy/Long , Sell/Short
- Limit order
- Market order
- Close position(futures)
- Cancel open order
- Set k-line interval
shortcuts on binance, shortcuts on bybit, shortcuts on bitget Основная информация о расширении
| Название | |
| ID | jfolfgmjmpofnkgnaibjfdadokbcbngf |
| Официальный URL | https://chromewebstore.google.com/detail/trade-shortcuts/jfolfgmjmpofnkgnaibjfdadokbcbngf |
| Описание | Make cryptocurrency trading Fast and efficient with Shortcuts |
| Размер файла | 53.43 KB |
| Количество установок | 130 |
| Текущая Версия | 1.0.3 |
| Последнее Обновление | 2022-11-18 |
| Дата публикации | 2022-08-03 |
| Рейтинг | 5.00/5 Всего 2 оценок |
| Разработчик | tradeshortcuts2022 |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en,ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appTitle__",
"description": "__MSG_appDescription__",
"version": "1.0.3",
"manifest_version": 3,
"background": {
"service_worker": "background.js",
"type": "module"
},
"default_locale": "en",
"permissions": [
"storage"
],
"action": {
"default_popup": "html\/popup.html",
"default_icon": {
"16": "\/img\/16.png",
"32": "\/img\/32.png",
"48": "\/img\/48.png",
"128": "\/img\/128.png"
}
},
"icons": {
"16": "\/img\/16.png",
"32": "\/img\/32.png",
"48": "\/img\/48.png",
"128": "\/img\/128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.bitget.com\/*"
],
"run_at": "document_idle",
"js": [
"js\/bitget.js"
],
"all_frames": true
},
{
"matches": [
"https:\/\/www.binance.com\/*"
],
"run_at": "document_idle",
"js": [
"js\/binance.js"
],
"all_frames": true
},
{
"matches": [
"https:\/\/testnet.binancefuture.com\/*"
],
"run_at": "document_idle",
"js": [
"js\/binance.js"
],
"all_frames": true
},
{
"matches": [
"https:\/\/www.bybit.com\/*"
],
"run_at": "document_idle",
"js": [
"js\/bybit.js"
],
"all_frames": true
},
{
"matches": [
"https:\/\/testnet.bybit.com\/*"
],
"run_at": "document_idle",
"js": [
"js\/bybit.js"
],
"all_frames": true
}
]
} | |