NHL.com Hide Scores

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

Cos'è NHL.com Hide Scores?

NHL.com Hide Scores è un'estensione di Chrome sviluppata da josephdslack, e la sua funzione principale è "Hides the scores on NHL.com, past and present.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione NHL.com Hide Scores

Scarica i file di estensione NHL.com Hide Scores in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        **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.                    

Informazioni di Base sull'Estensione

Nome NHL.com Hide Scores NHL.com Hide Scores
ID hnimjeehfmeopmlpmjbeknpocnnkfjad
URL Ufficiale https://chrome.google.com/webstore/detail/nhlcom-hide-scores/hnimjeehfmeopmlpmjbeknpocnnkfjad
Descrizione Hides the scores on NHL.com, past and present.
Dimensione del File 19.19 KB
Conteggio Installazioni 717
Versione Corrente 1.5
Ultimo Aggiornamento 2020-02-05
Data di Pubblicazione 2020-02-05
Valutazione 4.63/5 Totale 8 Valutazioni
Sviluppatore josephdslack
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/joeyslack/NHLHideScores
URL della Pagina di Aiuto https://github.com/joeyslack/NHLHideScores/Readme.md
Lingue Supportate 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"
    }
}