Coinbase Pro symbol redirect
Redirect your Coinbase Pro home to be a specific symbol.
Was ist Coinbase Pro symbol redirect?
Coinbase Pro symbol redirect ist eine Chrome-Erweiterung, die von rogere84 entwickelt wurde, und ihr Hauptmerkmal ist "Redirect your Coinbase Pro home to be a specific symbol.".
Erweiterungsscreenshots
Coinbase Pro symbol redirect-Erweiterungs-CRX-Datei herunterladen
Laden Sie Coinbase Pro symbol redirect-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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`
Grundlegende Informationen zur Erweiterung
Name | |
ID | kbkndgeijonaakkhpaiajmakbpigpfmm |
Offizielle URL | https://chrome.google.com/webstore/detail/coinbase-pro-symbol-redir/kbkndgeijonaakkhpaiajmakbpigpfmm |
Beschreibung | Redirect your Coinbase Pro home to be a specific symbol. |
Dateigröße | 66.54 KB |
Installationsanzahl | 37 |
Aktuelle Version | 1.5 |
Letztes Update | 2021-04-17 |
Veröffentlichungsdatum | 2021-04-17 |
Entwickler | rogere84 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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 } |