NHL.com Hide Scores

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

Vad är NHL.com Hide Scores?

NHL.com Hide Scores är en Chrome-tillägg utvecklad av josephdslack, och dess huvudfunktion är "Hides the scores on NHL.com, past and present.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner NHL.com Hide Scores-förlängningens CRX-fil

Ladda ner NHL.com Hide Scores-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn NHL.com Hide Scores NHL.com Hide Scores
ID hnimjeehfmeopmlpmjbeknpocnnkfjad
Officiell webbadress https://chrome.google.com/webstore/detail/nhlcom-hide-scores/hnimjeehfmeopmlpmjbeknpocnnkfjad
Beskrivning Hides the scores on NHL.com, past and present.
Filstorlek 19.19 KB
Antal Installationer 717
Aktuell Version 1.5
Senast Uppdaterad 2020-02-05
Publiceringsdatum 2020-02-05
Betyg 4.63/5 Totalt 8 Betyg
Utvecklare josephdslack
Betalningssätt free
Tilläggswebbplats https://github.com/joeyslack/NHLHideScores
Hjälpsida URL https://github.com/joeyslack/NHLHideScores/Readme.md
Stödda Språk 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"
    }
}