NBA Close Games
Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.
NBA Close Games란 무엇입니까?
NBA Close Games은(는) marcnewport에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off."입니다.
확장 프로그램 스크린샷
NBA Close Games 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A chrome extension for http://watch.nba.com that highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.
확장 프로그램 기본 정보
이름 | |
ID | fjjgljnmaijpilbcgbedemcnpffjkaaj |
공식 URL | https://chrome.google.com/webstore/detail/nba-close-games/fjjgljnmaijpilbcgbedemcnpffjkaaj |
설명 | Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off. |
파일 크기 | 17.44 KB |
설치 횟수 | 150 |
현재 버전 | 2.2.1 |
최근 업데이트 | 2018-10-20 |
출시 날짜 | 2018-10-20 |
평점 | 4.67/5 총 3 개의 평점 |
개발자 | marcnewport |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://marcnewport.com |
도움말 페이지 URL | https://github.com/marcnewport/nba-close-games/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "NBA Close Games", "description": "Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.", "version": "2.2.1", "options_page": "options.html", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "icons": [ "icons\/icon.png", "icons\/icon-disabled.png" ], "default_icon": "icons\/icon-disabled.png" }, "background": { "scripts": [ "js\/background.js", "js\/utils.js", "js\/options.js", "js\/manipulate.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/watch.nba.com\/*" ], "css": [ "css\/manipulate.css" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "activeTab", "tabs", "storage", "https:\/\/stats.nba.com\/*", "https:\/\/data.nba.net\/*", "https:\/\/wikihoops.com\/*" ] } |