Topshot Tracker
An extension that shows you the lowest ask of each of your moments, as well as your total collections value
O que é Topshot Tracker?
Topshot Tracker é uma extensão do Chrome desenvolvida por Moiz Ahmed, e sua principal característica é "An extension that shows you the lowest ask of each of your moments, as well as your total collections value".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Topshot Tracker
Baixe arquivos de extensão Topshot Tracker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
NBA Topshot makes it a lot of fun to collect digital highlights. However, since it is in beta it is missing some key features. One of these features is being able to see how much each of your moments are worth, as well as the total value of your collection right from your "moments" page. Topshot Trackers aim is to do just that, now when you head over to your moments page, you'll see the lowest ask of all of your moments right under their serial number, as well as see the total value of your collection at the top.
Informações Básicas da Extensão
Nome | Topshot Tracker |
ID | ighmbomagjleefmocempojajlbadnkgp |
URL Oficial | https://chromewebstore.google.com/detail/topshot-tracker/ighmbomagjleefmocempojajlbadnkgp |
Descrição | An extension that shows you the lowest ask of each of your moments, as well as your total collections value |
Tamanho do Arquivo | 13.87 KB |
Contagem de Instalações | 36 |
Versão Atual | 1.0.1 |
Última Atualização | 2021-03-12 |
Data de Publicação | 2021-03-12 |
Desenvolvedor | Moiz Ahmed |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Topshot Tracker", "version": "1.0.1", "description": "An extension that shows you the lowest ask of each of your moments, as well as your total collections value", "icons": { "16": "16.png", "32": "32.png", "48": "48.png", "128": "128.png" }, "manifest_version": 2, "permissions": [ "http:\/\/*.nbatopshot.com\/*", "https:\/\/*.nbatopshot.com\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*.nbatopshot.com\/*", "https:\/\/*.nbatopshot.com\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_title": "Topshot Tracker" } } |