ESPN NFL Score Hider
Hides the scores of NFL games for certain teams until you want to see them
O que é ESPN NFL Score Hider?
ESPN NFL Score Hider é uma extensão do Chrome desenvolvida por James_Hynes, e sua principal característica é "Hides the scores of NFL games for certain teams until you want to see them".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ESPN NFL Score Hider
Baixe arquivos de extensão ESPN NFL Score Hider 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 teams from ESPN's NFLscoreboard (http://www.espn.com/nfl/scoreboard). Select any number of teams, and their scores will appear whited out on ESPN. Perfect for anyone who can't watch their team play live but still want to follow the league. Leave a review and please don't hesitate to send any feedback/change requests.
Informações Básicas da Extensão
Nome | ESPN NFL Score Hider |
ID | hmmcjkppblmgkjbkjkielpomhpbdokae |
URL Oficial | https://chromewebstore.google.com/detail/espn-nfl-score-hider/hmmcjkppblmgkjbkjkielpomhpbdokae |
Descrição | Hides the scores of NFL games for certain teams until you want to see them |
Tamanho do Arquivo | 53.7 KB |
Contagem de Instalações | 29 |
Versão Atual | 0.1.2 |
Última Atualização | 2018-02-22 |
Data de Publicação | 2018-02-21 |
Desenvolvedor | James_Hynes |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ESPN NFL Score Hider", "description": "Hides the scores of NFL games for certain teams until you want to see them", "version": "0.1.2", "content_scripts": [ { "matches": [ "http:\/\/www.espn.com\/nfl\/scoreboard\/*" ], "css": [ "inject.css" ], "js": [ "lib\/jquery-3.3.1.min.js", "inject.js" ], "run_at": "document_end" } ], "browser_action": { "default_popup": "popup.html", "default_icon": "res\/icon.png" }, "icons": { "16": "res\/icon16.png", "32": "res\/icon32.png", "48": "res\/icon48.png", "128": "res\/icon.png" }, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false } } |