Coinbase Pro symbol redirect
Redirect your Coinbase Pro home to be a specific symbol.
What is Coinbase Pro symbol redirect?
Coinbase Pro symbol redirect is a Chrome extension developed by rogere84, and its main feature is "Redirect your Coinbase Pro home to be a specific symbol.".
Extension Screenshots
Download Coinbase Pro symbol redirect Extension CRX File
Download Coinbase Pro symbol redirect extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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`
Extension Basic Information
Name | |
ID | kbkndgeijonaakkhpaiajmakbpigpfmm |
Official URL | https://chrome.google.com/webstore/detail/coinbase-pro-symbol-redir/kbkndgeijonaakkhpaiajmakbpigpfmm |
Description | Redirect your Coinbase Pro home to be a specific symbol. |
File Size | 66.54 KB |
Installation Count | 37 |
Current Version | 1.5 |
Last Updated | 2021-04-17 |
Publish Date | 2021-04-17 |
Developer | rogere84 |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |