NHL.com Hide Scores

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

NHL.com Hide Scores क्या है?

NHL.com Hide Scores josephdslack द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hides the scores on NHL.com, past and present."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में NHL.com Hide Scores एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम NHL.com Hide Scores NHL.com Hide Scores
ID hnimjeehfmeopmlpmjbeknpocnnkfjad
आधिकारिक URL https://chrome.google.com/webstore/detail/nhlcom-hide-scores/hnimjeehfmeopmlpmjbeknpocnnkfjad
विवरण Hides the scores on NHL.com, past and present.
फ़ाइल का आकार 19.19 KB
स्थापना संख्या 717
वर्तमान संस्करण 1.5
अंतिम अपडेट 2020-02-05
प्रकाशन तिथि 2020-02-05
रेटिंग 4.63/5 कुल 8 रेटिंग्स
डेवलपर josephdslack
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/joeyslack/NHLHideScores
सहायता पृष्ठ URL https://github.com/joeyslack/NHLHideScores/Readme.md
समर्थित भाषाएँ 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"
    }
}