NHL.com Hide Scores

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

¿Qué es NHL.com Hide Scores?

NHL.com Hide Scores es una extensión de Chrome desarrollada por josephdslack, y su función principal es "Hides the scores on NHL.com, past and present.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión NHL.com Hide Scores

Descarga archivos de extensión NHL.com Hide Scores en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre NHL.com Hide Scores NHL.com Hide Scores
ID hnimjeehfmeopmlpmjbeknpocnnkfjad
URL Oficial https://chrome.google.com/webstore/detail/nhlcom-hide-scores/hnimjeehfmeopmlpmjbeknpocnnkfjad
Descripción Hides the scores on NHL.com, past and present.
Tamaño del Archivo 19.19 KB
Cantidad de Instalaciones 717
Versión Actual 1.5
Última Actualización 2020-02-05
Fecha de Publicación 2020-02-05
Calificación 4.63/5 Total de 8 Calificaciones
Desarrollador josephdslack
Tipo de Pago free
Sitio Web de la Extensión https://github.com/joeyslack/NHLHideScores
URL de la Página de Ayuda https://github.com/joeyslack/NHLHideScores/Readme.md
Idiomas Soportados 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"
    }
}