Coinbase Pro symbol redirect
Redirect your Coinbase Pro home to be a specific symbol.
Qu'est-ce que Coinbase Pro symbol redirect ?
Coinbase Pro symbol redirect est une extension Chrome développée par rogere84, et sa fonction principale est "Redirect your Coinbase Pro home to be a specific symbol.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Coinbase Pro symbol redirect
Téléchargez les fichiers d'extension Coinbase Pro symbol redirect au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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`
Informations de Base sur l'Extension
Nom | |
ID | kbkndgeijonaakkhpaiajmakbpigpfmm |
URL Officiel | https://chrome.google.com/webstore/detail/coinbase-pro-symbol-redir/kbkndgeijonaakkhpaiajmakbpigpfmm |
Description | Redirect your Coinbase Pro home to be a specific symbol. |
Taille du Fichier | 66.54 KB |
Nombre d'Installations | 37 |
Version Actuelle | 1.5 |
Dernière Mise à Jour | 2021-04-17 |
Date de Publication | 2021-04-17 |
Développeur | rogere84 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } |