Coinbase Pro symbol redirect
Redirect your Coinbase Pro home to be a specific symbol.
Coinbase Pro symbol redirect란 무엇입니까?
Coinbase Pro symbol redirect은(는) rogere84에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Redirect your Coinbase Pro home to be a specific symbol."입니다.
확장 프로그램 스크린샷
Coinbase Pro symbol redirect 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension adds a context menu to Chrome which allows you to automatically redirect from the default symbol on Coinbase Pro to a symbol of your choosing. For example, when I click 'Trade' I get forwarded to `ALGO-BTC`, but I actually want to see `ETH-GBP`
확장 프로그램 기본 정보
이름 | |
ID | kbkndgeijonaakkhpaiajmakbpigpfmm |
공식 URL | https://chrome.google.com/webstore/detail/coinbase-pro-symbol-redir/kbkndgeijonaakkhpaiajmakbpigpfmm |
설명 | Redirect your Coinbase Pro home to be a specific symbol. |
파일 크기 | 66.54 KB |
설치 횟수 | 37 |
현재 버전 | 1.5 |
최근 업데이트 | 2021-04-17 |
출시 날짜 | 2021-04-17 |
개발자 | rogere84 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Coinbase Pro symbol redirect", "version": "1.5", "description": "Redirect your Coinbase Pro home to be a specific symbol.", "action": { "default_popup": "pop.html" }, "content_scripts": [ { "matches": [ "https:\/\/pro.coinbase.com\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab", "scripting", "contextMenus", "storage", "tabs" ], "background": { "service_worker": "background.js" }, "icons": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" }, "manifest_version": 3 } |