RotoGrinders - Underdog Tools
RotoGrinders projections and player props on Underdog Fantasy
RotoGrinders - Underdog Tools란 무엇입니까?
RotoGrinders - Underdog Tools은(는) David에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "RotoGrinders projections and player props on Underdog Fantasy"입니다.
확장 프로그램 스크린샷
RotoGrinders - Underdog Tools 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension displays RotoGrinders player projections, in a variety of stat categories, for pick'em contests to help you make informed decisions in your contests. To access this content, RotoGrinders premium subscribers must sign into the extension.
확장 프로그램 기본 정보
이름 | |
ID | gmkifldndgcobdkfnfdfhmkmenjcbgoo |
공식 URL | https://chrome.google.com/webstore/detail/rotogrinders-underdog-too/gmkifldndgcobdkfnfdfhmkmenjcbgoo |
설명 | RotoGrinders projections and player props on Underdog Fantasy |
파일 크기 | 79.37 KB |
설치 횟수 | 309 |
현재 버전 | 1.0.24 |
최근 업데이트 | 2024-03-06 |
출시 날짜 | 2021-11-26 |
개발자 | David |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://rotogrinders.com |
도움말 페이지 URL | https://rotogrinders.com |
개인정보 보호 정책 페이지 URL | https://rotogrinders.com/static/privacy-policy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "RotoGrinders - Underdog Tools", "description": "RotoGrinders projections and player props on Underdog Fantasy", "version": "1.0.24", "manifest_version": 3, "host_permissions": [ "*:\/\/*.rotogrinders.com\/*", "*:\/\/underdogfantasy.com\/*" ], "background": { "service_worker": "background.js", "run_at": "document_start" }, "content_scripts": [ { "matches": [ "*:\/\/underdogfantasy.com\/pick-em\/*" ], "js": [ "libraries\/jquery.min.js", "libraries\/bindly.js", "content\/statmapping.js", "content\/element_binds.js", "content\/main.js" ], "css": [ "content\/css\/custom.css" ], "run_at": "document_start" } ], "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "images\/*" ], "matches": [ "*:\/\/*\/*" ] } ], "incognito": "spanning", "icons": { "16": ".\/images\/icon_16.png", "48": ".\/images\/icon_48.png", "128": ".\/images\/icon_128.png" }, "action": { "default_popup": "popup.html", "default_icon": { "48": ".\/images\/icon_48.png" } } } |