Trade Shortcuts
Make cryptocurrency trading Fast and efficient with Shortcuts
Co je Trade Shortcuts?
Trade Shortcuts je rozšíření Chrome vyvinuté tradeshortcuts2022, a jeho hlavní funkcí je „Make cryptocurrency trading Fast and efficient with Shortcuts“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Trade Shortcuts
Stáhněte si soubory rozšíření Trade Shortcuts ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Trade Shortcuts |
ID | jfolfgmjmpofnkgnaibjfdadokbcbngf |
Oficiální URL | https://chromewebstore.google.com/detail/trade-shortcuts/jfolfgmjmpofnkgnaibjfdadokbcbngf |
Popis | Make cryptocurrency trading Fast and efficient with Shortcuts |
Velikost souboru | 53.43 KB |
Počet instalací | 130 |
Aktuální Verze | 1.0.3 |
Poslední Aktualizace | 2022-11-18 |
Datum Vydání | 2022-08-03 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | tradeshortcuts2022 |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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 } ] } |