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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 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 } ] } |