NHL.com Hide Scores

Hides the scores on NHL.com, past and present.

O que é NHL.com Hide Scores?

NHL.com Hide Scores é uma extensão do Chrome desenvolvida por josephdslack, e sua principal característica é "Hides the scores on NHL.com, past and present.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão NHL.com Hide Scores

Baixe arquivos de extensão NHL.com Hide Scores 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

                        **UPDATE**
Now hiding FINAL/OT results, in addition to series and playoff scores! Thanks for the feedback!

Hide the scores on NHL.com, both past and present. Excellent for NHL Gamecenter and nhl.tv subscribers. Hides scores from the website.

If you're like me, you subscribe to nhl.tv, and sometimes you watch the game hours, or days later and don't want to be spoiled. On the iOS app there is a setting to hide scores, but on the web there isn't one. 

This extension will hide the scores when you go to nhl.tv, allowing you to still hover over the scoreboards at the top and choose the game to watch, even when scrolling left, to previous days.

Comments & Feedback appreciated, happy to update extension when necessary. Just providing this extension to help fellow hockey fans out. There are no ads or payments for this. The code is open sourced and tiny.                    

Informações Básicas da Extensão

Nome NHL.com Hide Scores NHL.com Hide Scores
ID hnimjeehfmeopmlpmjbeknpocnnkfjad
URL Oficial https://chrome.google.com/webstore/detail/nhlcom-hide-scores/hnimjeehfmeopmlpmjbeknpocnnkfjad
Descrição Hides the scores on NHL.com, past and present.
Tamanho do Arquivo 19.19 KB
Contagem de Instalações 717
Versão Atual 1.5
Última Atualização 2020-02-05
Data de Publicação 2020-02-05
Classificação 4.63/5 Total de 8 Avaliações
Desenvolvedor josephdslack
Tipo de Pagamento free
Site da Extensão https://github.com/joeyslack/NHLHideScores
URL da Página de Ajuda https://github.com/joeyslack/NHLHideScores/Readme.md
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NHL.com Hide Scores",
    "version": "1.5",
    "description": "Hides the scores on NHL.com, past and present.",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.nhl.com\/*"
            ],
            "css": [
                "contentscript.css"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    }
}