Trade Shortcuts
Make cryptocurrency trading Fast and efficient with Shortcuts
什麼是Trade Shortcuts?
Trade Shortcuts是由tradeshortcuts2022開發的Chrome擴展程式,該擴展的主要功能是“Make cryptocurrency trading Fast and efficient with Shortcuts”。
擴展截圖
下載Trade Shortcuts擴展crx文件
下載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
擴展基本資訊
名稱 | Trade Shortcuts |
ID | jfolfgmjmpofnkgnaibjfdadokbcbngf |
官方網址 | 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 } ] } |