Hide The Scores! (in NBA League Pass)
Hide all scores in the NBA League Pass game page.
O que é Hide The Scores! (in NBA League Pass)?
Hide The Scores! (in NBA League Pass) é uma extensão do Chrome desenvolvida por jorge.silva.jetter, e sua principal característica é "Hide all scores in the NBA League Pass game page.".
Baixar o arquivo CRX da Extensão Hide The Scores! (in NBA League Pass)
Baixe arquivos de extensão Hide The Scores! (in NBA League Pass) 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
Hide all scores in the NBA League Pass game page. It's really annoying watching a game on NBA League Pass and seeing the score at the same time! Specially when the feed is behind and YOU NOW KNOW WHAT GOING TO HAPPEN! Fix all that by just hiding all the scores! This extension only adds one line of CSS to add the scores, so it won't make your pages load any slower or run any code at all.
Informações Básicas da Extensão
Nome | |
ID | adabhlmohojcielbiknhlcmapbidbnkp |
URL Oficial | https://chrome.google.com/webstore/detail/hide-the-scores-in-nba-le/adabhlmohojcielbiknhlcmapbidbnkp |
Descrição | Hide all scores in the NBA League Pass game page. |
Tamanho do Arquivo | 5.47 KB |
Contagem de Instalações | 61 |
Versão Atual | 0.0.1 |
Última Atualização | 2017-01-21 |
Data de Publicação | 2017-01-21 |
Desenvolvedor | jorge.silva.jetter |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hide The Scores! (in NBA League Pass)", "description": "Hide all scores in the NBA League Pass game page.", "manifest_version": 2, "version": "0.0.1", "icons": { "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "http:\/\/www.nba.com\/*" ], "css": [ "main.css" ], "js": [ "main.js" ] } ], "browser_action": { "default_icon": "icon.png" }, "permissions": [ "tabs", "http:\/\/www.nba.com\/*" ] } |