Trade Shortcuts
Make cryptocurrency trading Fast and efficient with Shortcuts
Cos'è Trade Shortcuts?
Trade Shortcuts è un'estensione di Chrome sviluppata da tradeshortcuts2022, e la sua funzione principale è "Make cryptocurrency trading Fast and efficient with Shortcuts".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Trade Shortcuts
Scarica i file di estensione Trade Shortcuts in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Trade Shortcuts |
ID | jfolfgmjmpofnkgnaibjfdadokbcbngf |
URL Ufficiale | https://chromewebstore.google.com/detail/trade-shortcuts/jfolfgmjmpofnkgnaibjfdadokbcbngf |
Descrizione | Make cryptocurrency trading Fast and efficient with Shortcuts |
Dimensione del File | 53.43 KB |
Conteggio Installazioni | 130 |
Versione Corrente | 1.0.3 |
Ultimo Aggiornamento | 2022-11-18 |
Data di Pubblicazione | 2022-08-03 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | tradeshortcuts2022 |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } ] } |