Fantasy Basketball Video Replays
Watch replays of every individual statistic right on your fantasy basketball pages.
Fantasy Basketball Video Replays란 무엇입니까?
Fantasy Basketball Video Replays은(는) statreplay에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Watch replays of every individual statistic right on your fantasy basketball pages."입니다.
확장 프로그램 스크린샷
Fantasy Basketball Video Replays 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Do you find yourself lacking the time to watch every game for your fantasy basketball team? Is watching highlights on YouTube something you do to save time on having to watch all those games? This chrome extension is for you. Highlights (and lowlights) for fantasy basketball standard 9-cat are available directly on your Yahoo Fantasy Basketball team's page. The following stats are support on a team's page: 3PM, REB, AST, STL, BLK, and TO. Each stat will have a link to open a modal window that contains each play's video so you can watch and analyze your player's performances! v0.0.2: - Support Yahoo Fantasy Basketball Team's Page - Stats supported: 3PM, REB, AST, STL, BLK, TO Coming soon: - Support the Yahoo Fantasy Basketball Matchup's Page - Support the Yahoo Fantasy Basketball Player's List Page - Support new stats: FGM, FGA, FTM, FTA - Autoplay videos (automatically play next video)
확장 프로그램 기본 정보
이름 | Fantasy Basketball Video Replays |
ID | lmoplljfbphlbkjhidbghfhflmjfaapm |
공식 URL | https://chromewebstore.google.com/detail/fantasy-basketball-video/lmoplljfbphlbkjhidbghfhflmjfaapm |
설명 | Watch replays of every individual statistic right on your fantasy basketball pages. |
파일 크기 | 352 KB |
설치 횟수 | 44 |
현재 버전 | 0.0.2 |
최근 업데이트 | 2021-11-14 |
출시 날짜 | 2021-11-10 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | statreplay |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Fantasy Basketball Video Replays", "description": "Watch replays of every individual statistic right on your fantasy basketball pages.", "version": "0.0.2", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/basketball.fantasysports.yahoo.com\/nba\/*" ], "css": [ ".\/static\/css\/bootstraplistgroup.css", ".\/static\/css\/modal.css", ".\/static\/css\/videojs.css" ], "js": [ ".\/static\/js\/content.js" ], "run_at": "document_end", "all_frames": true } ], "content_security_policy": { "extension_pages": "default-src 'self'; style-src 'self' data: 'unsafe-inline'; connect-src https:\/\/* data: blob: filesystem:;" }, "permissions": [ "activeTab" ], "action": { "default_popup": "index.html", "default_icon": { "16": "play-button-16.png", "32": "play-button-32.png", "48": "play-button-48.png", "128": "play-button-128.png" } }, "icons": { "16": "play-button-16.png", "32": "play-button-32.png", "48": "play-button-48.png", "128": "play-button-128.png" }, "web_accessible_resources": [ { "resources": [ "ball-triangle.svg" ], "matches": [ "https:\/\/basketball.fantasysports.yahoo.com\/*" ] } ] } |