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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.
확장 프로그램 기본 정보
이름 | |
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" } } |