NHL.com Hide Scores
Hides the scores on NHL.com, past and present.
NHL.com Hide Scoresとは何ですか?
NHL.com Hide Scoresはjosephdslackによって開発されたChromeの拡張機能で、その主な機能は「Hides the scores on NHL.com, past and present.」です。
拡張機能のスクリーンショット
NHL.com Hide Scores拡張機能のCRXファイルをダウンロード
NHL.com Hide Scores拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
**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.
拡張機能の基本情報
名前 | |
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" } } |