RotoGrinders - PrizePicks Tools
RotoGrinders projections and player props on PrizePicks
什么是RotoGrinders - PrizePicks Tools?
RotoGrinders - PrizePicks Tools是由David开发的Chrome扩展程序,该扩展的主要功能是“RotoGrinders projections and player props on PrizePicks”。
扩展截图
下载RotoGrinders - PrizePicks Tools扩展crx文件
下载RotoGrinders - PrizePicks Tools扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Premium RotoGrinders subscribers can view player projections for a variety of stat categories when entering contests on PrizePicks to help them make informed decisions. To access this content, RotoGrinders premium subscribers must sign into the extension. 扩展基本信息
| 名称 | |
| ID | halpfniallabfenmpmkchcinbkigcjkj |
| 官方URL | https://chromewebstore.google.com/detail/rotogrinders-prizepicks-t/halpfniallabfenmpmkchcinbkigcjkj |
| 简介 | RotoGrinders projections and player props on PrizePicks |
| 文件大小 | 276 KB |
| 安装次数 | 708 |
| 当前版本 | 1.0.40 |
| 更新时间 | 2024-02-23 |
| 上架时间 | 2022-01-18 |
| 评分 | 1.00/5 共2次评分 |
| 开发者 | 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",
"manifest_version": 3,
"name": "RotoGrinders - PrizePicks Tools",
"action": {
"default_icon": {
"48": "images\/icon_48.png"
},
"show_matches": [
"https:\/\/app.prizepicks.com\/*"
],
"default_popup": "html\/prizepicksPopup.html"
},
"version": "1.0.40",
"description": "RotoGrinders projections and player props on PrizePicks",
"background": {
"service_worker": "js\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/app.prizepicks.com\/*"
],
"js": [
"js\/extInfo.js",
"js\/statMapping.js",
"js\/nameMatching.js",
"js\/picksBoard.js",
"js\/initialization.js"
],
"css": [
"css\/extInfoModal.css"
],
"run_at": "document_start",
"all_frames": false,
"exclude_matches": [
"*:\/\/*\/*debug*"
]
}
],
"host_permissions": [
"https:\/\/*.rotogrinders.com\/*"
],
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": [
"html\/extInfoModal.html",
"images\/logo.png",
"images\/icon_128.png",
"images\/picks-board-display.png",
"images\/premium-popup.png",
"images\/icon_48.png"
],
"matches": [
"https:\/\/app.prizepicks.com\/*"
],
"all_frames": false
}
],
"icons": {
"16": "images\/icon_16.png",
"48": "images\/icon_48.png",
"128": "images\/icon_128.png"
}
} | |