Coinbase Pro symbol redirect
Redirect your Coinbase Pro home to be a specific symbol.
Wat is Coinbase Pro symbol redirect?
Coinbase Pro symbol redirect is een Chrome-extensie ontwikkeld door rogere84, en de belangrijkste functie is "Redirect your Coinbase Pro home to be a specific symbol.".
Extensie Screenshots
Download het CRX-bestand van de extensie Coinbase Pro symbol redirect
Download Coinbase Pro symbol redirect-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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`
Basisinformatie over de Extensie
Naam | |
ID | kbkndgeijonaakkhpaiajmakbpigpfmm |
Officiële URL | https://chrome.google.com/webstore/detail/coinbase-pro-symbol-redir/kbkndgeijonaakkhpaiajmakbpigpfmm |
Beschrijving | Redirect your Coinbase Pro home to be a specific symbol. |
Bestandsgrootte | 66.54 KB |
Aantal Installaties | 37 |
Huidige Versie | 1.5 |
Laatst Bijgewerkt | 2021-04-17 |
Publicatiedatum | 2021-04-17 |
Ontwikkelaar | rogere84 |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } |