Coinbase Pro symbol redirect
Redirect your Coinbase Pro home to be a specific symbol.
Apa itu Coinbase Pro symbol redirect?
Coinbase Pro symbol redirect adalah ekstensi Chrome yang dikembangkan oleh rogere84, dan fitur utamanya adalah "Redirect your Coinbase Pro home to be a specific symbol.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Coinbase Pro symbol redirect
Unduh file ekstensi Coinbase Pro symbol redirect dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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`
Informasi Dasar Ekstensi
Nama | |
ID | kbkndgeijonaakkhpaiajmakbpigpfmm |
URL Resmi | https://chrome.google.com/webstore/detail/coinbase-pro-symbol-redir/kbkndgeijonaakkhpaiajmakbpigpfmm |
Deskripsi | Redirect your Coinbase Pro home to be a specific symbol. |
Ukuran File | 66.54 KB |
Jumlah Instalasi | 37 |
Versi Saat Ini | 1.5 |
Terakhir Diperbarui | 2021-04-17 |
Tanggal Publikasi | 2021-04-17 |
Pengembang | rogere84 |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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 } |